aboutsummaryrefslogtreecommitdiff
path: root/c/listview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'c/listview.cpp')
-rw-r--r--c/listview.cpp10
1 files changed, 4 insertions, 6 deletions
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);