https://git.reactos.org/?p=reactos.git;a=commitdiff;h=6de330026cba44c2322ec84ff9ea0bffb7982066

commit 6de330026cba44c2322ec84ff9ea0bffb7982066
Author:     Katayama Hirofumi MZ <[email protected]>
AuthorDate: Tue Mar 2 07:36:55 2021 +0900
Commit:     Katayama Hirofumi MZ <[email protected]>
CommitDate: Tue Mar 2 07:36:55 2021 +0900

    [BROWSEUI_APITEST] Follow-up of #3493
---
 modules/rostests/apitests/browseui/IAutoComplete.cpp | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/modules/rostests/apitests/browseui/IAutoComplete.cpp 
b/modules/rostests/apitests/browseui/IAutoComplete.cpp
index c438c873828..1bed8ad5369 100644
--- a/modules/rostests/apitests/browseui/IAutoComplete.cpp
+++ b/modules/rostests/apitests/browseui/IAutoComplete.cpp
@@ -376,7 +376,9 @@ DoTestCaseA(INT x, INT y, INT cx, INT cy, LPCWSTR pszInput,
 #define DROPDOWN_STYLE (WS_POPUP | WS_VISIBLE | WS_CLIPSIBLINGS | \
                         WS_CLIPCHILDREN | WS_BORDER) // 0x96800000
     ok(style == DROPDOWN_STYLE, "style was 0x%08lx\n", style);
-    ok_long(exstyle, 0x8c);
+#define DROPDOWN_EX_STYLE (WS_EX_TOOLWINDOW | WS_EX_TOPMOST | \
+                           WS_EX_NOPARENTNOTIFY) // 0x8c
+    ok_long(exstyle, DROPDOWN_EX_STYLE);
     ok_long((LONG)id, 0);
 
     // check class style

Reply via email to