cmdlgtst: Remove superfluous casts.

Michael Stefaniuc mstefani at redhat.de
Wed Jan 7 17:37:23 CST 2009


---
 programs/cmdlgtst/cmdlgtst.c |   18 +++++++++---------
 1 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/programs/cmdlgtst/cmdlgtst.c b/programs/cmdlgtst/cmdlgtst.c
index 0c8b2b1..a4d3204 100644
--- a/programs/cmdlgtst/cmdlgtst.c
+++ b/programs/cmdlgtst/cmdlgtst.c
@@ -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);
 }
-- 
1.6.0.6
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189 bytes
Desc: not available
Url : http://www.winehq.org/pipermail/wine-patches/attachments/20090108/5df23fd9/attachment.pgp 


More information about the wine-patches mailing list