diff options
Diffstat (limited to 'c/listview.cpp')
-rw-r--r-- | c/listview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/c/listview.cpp b/c/listview.cpp index 8224c0a..9ca088c 100644 --- a/c/listview.cpp +++ b/c/listview.cpp @@ -37,11 +37,11 @@ int ListView::Height() void ListView::ResizeColumns(int) {} -void ListView::UpdateTheme(const BOOL bThemeActive) +void ListView::UpdateTheme(const bool bThemeActive) { const wchar_t* theme; WORD action; - extern BOOL (*SetWindowTheme)(HWND, LPCWSTR, LPCWSTR); + extern BOOL (*SetWindowTheme)(HWND, const wchar_t*, const wchar_t*); if (!SetWindowTheme) return; if (bThemeActive) { |