cmdlgtst: Remove superfluous casts.

oldstable
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! */
BeginPaint(hWnd, &ps);
GetClientRect(hWnd, (LPRECT) &rect);
GetClientRect(hWnd, &rect);
pen = SelectObject(ps.hdc, CreatePen(0, 0, fgColor));
brush = SelectObject(ps.hdc, CreateSolidBrush(bgColor));
@ -367,8 +367,8 @@ static void mw_ColorSetup(HWND hWnd)
if(ChooseColor(&cc)) {
RECT rect;
GetClientRect(hWnd, (LPRECT) &rect);
InvalidateRect(hWnd, (LPRECT) &rect, FALSE);
GetClientRect(hWnd, &rect);
InvalidateRect(hWnd, &rect, FALSE);
bgColor = cc.rgbResult;
}
else mw_checkError(hWnd, FALSE);
@ -378,8 +378,8 @@ static void mw_FontSetup(HWND hWnd)
{
if(ChooseFont(&cf)) {
RECT rect;
GetClientRect(hWnd, (LPRECT) &rect);
InvalidateRect(hWnd, (LPRECT) &rect, FALSE);
GetClientRect(hWnd, &rect);
InvalidateRect(hWnd, &rect, FALSE);
txtColor = cf.rgbColors;
}
else mw_checkError(hWnd, FALSE);
@ -405,8 +405,8 @@ static void mw_OpenSetup(HWND hWnd)
{
if(GetOpenFileName(&ofn)) {
RECT rect;
GetClientRect(hWnd, (LPRECT) &rect);
InvalidateRect(hWnd, (LPRECT) &rect, FALSE);
GetClientRect(hWnd, &rect);
InvalidateRect(hWnd, &rect, FALSE);
}
else mw_checkError(hWnd,FALSE);
}
@ -415,8 +415,8 @@ static void mw_SaveSetup(HWND hWnd)
{
if(GetSaveFileName(&ofn)) {
RECT rect;
GetClientRect(hWnd, (LPRECT) &rect);
InvalidateRect(hWnd, (LPRECT) &rect, FALSE);
GetClientRect(hWnd, &rect);
InvalidateRect(hWnd, &rect, FALSE);
}
else mw_checkError(hWnd,FALSE);
}