Michael Stefaniuc : atl80/tests:Use wide-char string literals.

Alexandre Julliard julliard at winehq.org
Wed Sep 30 14:35:29 CDT 2020


Module: wine
Branch: master
Commit: 3ce68396c20b2f1e180f7c89934b82d738fbcdaa
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=3ce68396c20b2f1e180f7c89934b82d738fbcdaa

Author: Michael Stefaniuc <mstefani at winehq.org>
Date:   Tue Sep 29 23:29:34 2020 +0200

atl80/tests:Use wide-char string literals.

Signed-off-by: Michael Stefaniuc <mstefani at winehq.org>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/atl80/tests/atl.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/dlls/atl80/tests/atl.c b/dlls/atl80/tests/atl.c
index b88177d9e0..7ad11ce5c9 100644
--- a/dlls/atl80/tests/atl.c
+++ b/dlls/atl80/tests/atl.c
@@ -35,8 +35,6 @@ static void test_ax_win(void)
 {
     BOOL ret;
     WNDCLASSEXW wcex;
-    static const WCHAR AtlAxWin80[] = {'A','t','l','A','x','W','i','n','8','0',0};
-    static const WCHAR AtlAxWinLic80[] = {'A','t','l','A','x','W','i','n','L','i','c','8','0',0};
     static HMODULE hinstance = 0;
 
     ret = AtlAxWinInit();
@@ -46,13 +44,13 @@ static void test_ax_win(void)
 
     memset(&wcex, 0, sizeof(wcex));
     wcex.cbSize = sizeof(wcex);
-    ret = GetClassInfoExW(hinstance, AtlAxWin80, &wcex);
+    ret = GetClassInfoExW(hinstance, L"AtlAxWin80", &wcex);
     ok(ret, "AtlAxWin80 has not registered\n");
     ok(wcex.style == (CS_GLOBALCLASS | CS_DBLCLKS), "wcex.style %08x\n", wcex.style);
 
     memset(&wcex, 0, sizeof(wcex));
     wcex.cbSize = sizeof(wcex);
-    ret = GetClassInfoExW(hinstance, AtlAxWinLic80, &wcex);
+    ret = GetClassInfoExW(hinstance, L"AtlAxWinLic80", &wcex);
     ok(ret, "AtlAxWinLic80 has not registered\n");
     ok(wcex.style == (CS_GLOBALCLASS | CS_DBLCLKS), "wcex.style %08x\n", wcex.style);
 }




More information about the wine-cvs mailing list