aboutsummaryrefslogtreecommitdiff
path: root/c/listview.h
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2022-08-06 01:21:08 +0200
committerJohn Ankarström <john@ankarstrom.se>2022-08-06 01:21:08 +0200
commitcf8707bf2ede99d8543d806355eee088bdc1376b (patch)
tree0f1ffc52906d9f66f75631bd97dfb0dcf91989ad /c/listview.h
parentc0024748e8ff2f46e5d37a054fa349f24ddc497f (diff)
downloadEpisodeBrowser-cf8707bf2ede99d8543d806355eee088bdc1376b.tar.gz
Use typedefs when interacting with Win32 API.
It's not like they're ever going to change the definition of WORD (knock on wood) -- but I guess it's proper to use them as if their definitions might change.
Diffstat (limited to 'c/listview.h')
-rw-r--r--c/listview.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/listview.h b/c/listview.h
index 008f995..b0e49ee 100644
--- a/c/listview.h
+++ b/c/listview.h
@@ -17,7 +17,7 @@ struct ListView
* by default). */
virtual void ResizeColumns(int w);
/* Enable/disable "modern" theme. */
- virtual void UpdateTheme(BOOL bThemeActive);
+ virtual void UpdateTheme(bool bThemeActive);
virtual LRESULT CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
protected:
WNDPROC m_proc0;