comctl32: rebar tests: support different window border width

Mikołaj Zalewski mikolaj at zalewski.pl
Thu Mar 1 06:48:26 CST 2007


This should make the tests pass under Windows Vista
-------------- next part --------------
From 500f20a0fc98800b5120ef078ae3210b4e25c345 Mon Sep 17 00:00:00 2001
From: =?utf-8?q?Miko=C5=82aj_Zalewski?= <mikolaj at zalewski.pl>
Date: Thu, 1 Mar 2007 13:42:37 +0100
Subject: [PATCH] comctl32: rebar tests: support different window border width

---
 dlls/comctl32/tests/rebar.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/dlls/comctl32/tests/rebar.c b/dlls/comctl32/tests/rebar.c
index 640091a..e769420 100644
--- a/dlls/comctl32/tests/rebar.c
+++ b/dlls/comctl32/tests/rebar.c
@@ -790,7 +790,8 @@ START_TEST(rebar)
     wc.lpfnWndProc = MyWndProc;
     RegisterClassA(&wc);
     hMainWnd = CreateWindowExA(0, "MyTestWnd", "Blah", WS_OVERLAPPEDWINDOW,
-      CW_USEDEFAULT, CW_USEDEFAULT, 680, 226+GetSystemMetrics(SM_CYCAPTION)+2*GetSystemMetrics(SM_CYSIZEFRAME),
+      CW_USEDEFAULT, CW_USEDEFAULT, 672+2*GetSystemMetrics(SM_CXSIZEFRAME),
+      226+GetSystemMetrics(SM_CYCAPTION)+2*GetSystemMetrics(SM_CYSIZEFRAME),
       NULL, NULL, GetModuleHandleA(NULL), 0);
     GetClientRect(hMainWnd, &rc);
     ShowWindow(hMainWnd, SW_SHOW);
-- 
1.4.4.2


More information about the wine-patches mailing list