aboutsummaryrefslogtreecommitdiff
path: root/c/main.c
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2022-02-16 21:39:41 +0100
committerJohn Ankarström <john@ankarstrom.se>2022-02-16 21:39:41 +0100
commit263bc8b8ff4296a1fe0014a26134ad35ebccbbff (patch)
tree3ca94ee318f49fca112fb636e5e9172fae16c273 /c/main.c
parent2a726875d7ab370966bbb4b6ebb41756fc17f729 (diff)
downloadEpisodeBrowser-263bc8b8ff4296a1fe0014a26134ad35ebccbbff.tar.gz
Make column headers unclickable.
Diffstat (limited to 'c/main.c')
-rw-r--r--c/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/main.c b/c/main.c
index 31636f6..330101e 100644
--- a/c/main.c
+++ b/c/main.c
@@ -98,7 +98,7 @@ WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
UpdateLayout(hWnd);
break;
case WM_NOTIFY:
- switch (((NMHDR *)lParam)->idFrom) {
+ switch (((LPNMHDR)lParam)->idFrom) {
case IDC_EPISODELISTVIEW:
return ElvHandleNotify(lParam);
}