From 5d2c2b27a6323e2666378b986129b2a7c2c39e5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Sun, 6 Feb 2022 16:04:24 +0100 Subject: New upstream version 5.2.2GA --- app/wlib/mswlib/mswbox.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'app/wlib/mswlib/mswbox.c') diff --git a/app/wlib/mswlib/mswbox.c b/app/wlib/mswlib/mswbox.c index 04b3656..4f90cf4 100644 --- a/app/wlib/mswlib/mswbox.c +++ b/app/wlib/mswlib/mswbox.c @@ -30,8 +30,8 @@ struct wBox_t { void wBoxSetSize( wBox_p bb, - wPos_t w, - wPos_t h ) + wWinPix_t w, + wWinPix_t h ) { bb->w = w; bb->h = h; @@ -42,7 +42,7 @@ static void repaintBox( HWND hWnd, wControl_p b ) { HDC hDc; wBox_p bb = (wBox_p)(b); - wPos_t x0, y0, x1, y1; + wWinPix_t x0, y0, x1, y1; char lastColor; int lastRop; static char colors[8][4][2] = { @@ -95,12 +95,12 @@ static callBacks_t boxCallBacks = { wBox_p wBoxCreate( wWin_p parent, - wPos_t origX, - wPos_t origY, + wWinPix_t origX, + wWinPix_t origY, const char * labelStr, wBoxType_e typ, - wPos_t width, - wPos_t height ) + wWinPix_t width, + wWinPix_t height ) { wBox_p b; int index; -- cgit v1.2.3