diff options
author | John Ankarström <john@ankarstrom.se> | 2022-04-01 02:30:56 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2022-04-01 02:30:56 +0200 |
commit | 0719ccc4bd2f967fe2c7bc4a101a551eef21f9c7 (patch) | |
tree | f1ace58afe2572a99031bbe1eb4e35e3d17204f9 /c/listview.c | |
parent | 877aa7c7f6287168f9c809c8823ec939f6364040 (diff) | |
download | EpisodeBrowser-0719ccc4bd2f967fe2c7bc4a101a551eef21f9c7.tar.gz |
Update comment style.
Diffstat (limited to 'c/listview.c')
-rw-r--r-- | c/listview.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/c/listview.c b/c/listview.c index a528e44..582888d 100644 --- a/c/listview.c +++ b/c/listview.c @@ -51,11 +51,10 @@ LvProc(HWND hLv, UINT uMsg, WPARAM wParam, LPARAM lParam) LRESULT lResult; extern HWND HElv; - /* For the episode list view, the Enter key should not - * be handled by the dialog manager, but instead be sent - * along to the main window procedure, so that it may be - * handled by the NM_RETURN case in ElvHandleNotify. - */ + /* For the episode list view, the Enter key should not + * be handled by the dialog manager, but instead be sent + * along to the main window procedure, so that it may be + * handled by the NM_RETURN case in ElvHandleNotify. */ if (hLv != HElv) break; lResult = CallWindowProc(LvPrevProc, hLv, uMsg, wParam, lParam); |