From 400d4d12b7a70b81629a119844e7d5ad16aa6012 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Ankarstr=C3=B6m?= Date: Wed, 20 Jul 2022 14:31:28 +0200 Subject: Improve ANSI compatibility. This improves upon 79d4fa6. Actually, ANSI compatibility may be desirable, as recent work has been done to make the A versions of Windows API functions work with UTF-8. --- c/listview.cpp | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'c/listview.cpp') diff --git a/c/listview.cpp b/c/listview.cpp index 3ad66f5..752ebcb 100644 --- a/c/listview.cpp +++ b/c/listview.cpp @@ -41,25 +41,23 @@ int ListView::Height(int bHeader) void ListView::UpdateTheme(const BOOL bThemeActive) { DWORD dwStyle; - const TCHAR* tszTheme; + const wchar_t* wszTheme; WORD wAction; extern int g_bThemes; if (!g_bThemes) return; if (bThemeActive) { dwStyle = LVS_EX_DOUBLEBUFFER; - tszTheme = TEXT("Explorer"); + wszTheme = L"Explorer"; wAction = UIS_SET; } else { dwStyle = 0; - tszTheme = NULL; + wszTheme = NULL; wAction = UIS_CLEAR; } -#ifdef UNICODE /* Use modern "Explorer" theme. */ - SetWindowTheme(hWnd, tszTheme, NULL); -#endif + SetWindowTheme(hWnd, wszTheme, NULL); /* The modern theme requires double buffering. */ ListView_SetExtendedListViewStyleEx(hWnd, LVS_EX_DOUBLEBUFFER, dwStyle); -- cgit v1.2.3