wmp/tests: Use SetRect() instead of open coding it.

Michael Stefaniuc mstefani at redhat.de
Tue May 3 04:08:55 CDT 2016


Signed-off-by: Michael Stefaniuc <mstefani at redhat.de>
---
 dlls/wmp/tests/oleobj.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/dlls/wmp/tests/oleobj.c b/dlls/wmp/tests/oleobj.c
index cc2f4fe..971a2fe 100644
--- a/dlls/wmp/tests/oleobj.c
+++ b/dlls/wmp/tests/oleobj.c
@@ -963,10 +963,7 @@ static void test_wmp(void)
 
     test_window(hwnd);
 
-    pos.left = 1;
-    pos.top = 2;
-    pos.right = 301;
-    pos.bottom = 312;
+    SetRect(&pos, 1, 2, 301, 312);
     hres = IOleInPlaceObject_SetObjectRects(ipobj, &pos, &pos);
     ok(hres == S_OK, "SetObjectRects failed: %08x\n", hres);
     GetClientRect(hwnd, &pos);
-- 
2.4.11



More information about the wine-patches mailing list