cmdlgtst: Remove superfluous casts.

This commit is contained in:
Michael Stefaniuc 2009-01-08 00:37:23 +01:00 committed by Alexandre Julliard
parent 6f49003106
commit 568a8b845a
1 changed files with 9 additions and 9 deletions

View File

@ -288,7 +288,7 @@ static void paintMainWindow(HWND hWnd, UINT iMessage, WPARAM wParam, LPARAM lPar
/* Commence painting! */ /* Commence painting! */
BeginPaint(hWnd, &ps); BeginPaint(hWnd, &ps);
GetClientRect(hWnd, (LPRECT) &rect); GetClientRect(hWnd, &rect);
pen = SelectObject(ps.hdc, CreatePen(0, 0, fgColor)); pen = SelectObject(ps.hdc, CreatePen(0, 0, fgColor));
brush = SelectObject(ps.hdc, CreateSolidBrush(bgColor)); brush = SelectObject(ps.hdc, CreateSolidBrush(bgColor));
@ -367,8 +367,8 @@ static void mw_ColorSetup(HWND hWnd)
if(ChooseColor(&cc)) { if(ChooseColor(&cc)) {
RECT rect; RECT rect;
GetClientRect(hWnd, (LPRECT) &rect); GetClientRect(hWnd, &rect);
InvalidateRect(hWnd, (LPRECT) &rect, FALSE); InvalidateRect(hWnd, &rect, FALSE);
bgColor = cc.rgbResult; bgColor = cc.rgbResult;
} }
else mw_checkError(hWnd, FALSE); else mw_checkError(hWnd, FALSE);
@ -378,8 +378,8 @@ static void mw_FontSetup(HWND hWnd)
{ {
if(ChooseFont(&cf)) { if(ChooseFont(&cf)) {
RECT rect; RECT rect;
GetClientRect(hWnd, (LPRECT) &rect); GetClientRect(hWnd, &rect);
InvalidateRect(hWnd, (LPRECT) &rect, FALSE); InvalidateRect(hWnd, &rect, FALSE);
txtColor = cf.rgbColors; txtColor = cf.rgbColors;
} }
else mw_checkError(hWnd, FALSE); else mw_checkError(hWnd, FALSE);
@ -405,8 +405,8 @@ static void mw_OpenSetup(HWND hWnd)
{ {
if(GetOpenFileName(&ofn)) { if(GetOpenFileName(&ofn)) {
RECT rect; RECT rect;
GetClientRect(hWnd, (LPRECT) &rect); GetClientRect(hWnd, &rect);
InvalidateRect(hWnd, (LPRECT) &rect, FALSE); InvalidateRect(hWnd, &rect, FALSE);
} }
else mw_checkError(hWnd,FALSE); else mw_checkError(hWnd,FALSE);
} }
@ -415,8 +415,8 @@ static void mw_SaveSetup(HWND hWnd)
{ {
if(GetSaveFileName(&ofn)) { if(GetSaveFileName(&ofn)) {
RECT rect; RECT rect;
GetClientRect(hWnd, (LPRECT) &rect); GetClientRect(hWnd, &rect);
InvalidateRect(hWnd, (LPRECT) &rect, FALSE); InvalidateRect(hWnd, &rect, FALSE);
} }
else mw_checkError(hWnd,FALSE); else mw_checkError(hWnd,FALSE);
} }