From 6c50f818e8a9f42921aa171e1d34265bb1f35985 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Ankarstr=C3=B6m?= Date: Thu, 17 Feb 2022 15:29:05 +0100 Subject: Small changes. --- c/episodelistview.c | 2 +- c/main.c | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) (limited to 'c') diff --git a/c/episodelistview.c b/c/episodelistview.c index dbccd29..040383a 100644 --- a/c/episodelistview.c +++ b/c/episodelistview.c @@ -18,7 +18,7 @@ ElvCreate() LVCOLUMN lvc; LpLviElvSelection = malloc(sizeof(LVITEM)); - if (!LpLviElvSelection) return 0; + if (!LpLviElvSelection) return NULL; HElv = LvCreate((HMENU)IDC_EPISODELISTVIEW); lvc.mask = LVCF_WIDTH|LVCF_TEXT|LVCF_SUBITEM; diff --git a/c/main.c b/c/main.c index 1ef714c..1a4e287 100644 --- a/c/main.c +++ b/c/main.c @@ -185,8 +185,6 @@ INT_PTR CALLBACK AboutDlgProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) { switch (uMsg) { - case WM_INITDIALOG: - return TRUE; case WM_CLOSE: EndDialog(hWnd, IDOK); break; -- cgit v1.2.3