diff options
| author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2022-02-06 16:04:24 +0100 | 
|---|---|---|
| committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2022-02-06 16:04:24 +0100 | 
| commit | 5d2c2b27a6323e2666378b986129b2a7c2c39e5c (patch) | |
| tree | ce8982b6c0111f79791068de2c2d4c6ce3138a49 /app/wlib/mswlib/mswbox.c | |
| parent | b623f5953691b2a0614e6f1f4def86bdbb9a4113 (diff) | |
New upstream version 5.2.2GAupstream/5.2.2GA
Diffstat (limited to 'app/wlib/mswlib/mswbox.c')
| -rw-r--r-- | app/wlib/mswlib/mswbox.c | 14 | 
1 files changed, 7 insertions, 7 deletions
| 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; | 
