aboutsummaryrefslogtreecommitdiff
path: root/c/listview.cpp
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2022-07-19 15:35:20 +0200
committerJohn Ankarström <john@ankarstrom.se>2022-07-19 15:35:20 +0200
commit665af5653391baa19bd678bc27d3157360edc6fc (patch)
tree8c8e121502edf121092f0548bbd96fdf4410b505 /c/listview.cpp
parent54914d64a3d4564f470177dd8b7675bc46ecbe0b (diff)
downloadEpisodeBrowser-665af5653391baa19bd678bc27d3157360edc6fc.tar.gz
Formatting.
Diffstat (limited to 'c/listview.cpp')
-rw-r--r--c/listview.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/c/listview.cpp b/c/listview.cpp
index 27dc7ac..8f5da65 100644
--- a/c/listview.cpp
+++ b/c/listview.cpp
@@ -19,8 +19,7 @@ ListView::ListView(const HWND hWndParent, const HMENU hMenu, const DWORD dwStyle
TEXT(""),
dwStyle|WS_CHILD|WS_VISIBLE|WS_VSCROLL|WS_TABSTOP|LVS_REPORT|LVS_SHOWSELALWAYS,
0, 0, 0, 0,
- m_hWndParent, hMenu, GetModuleHandle(NULL), this
- );
+ m_hWndParent, hMenu, GetModuleHandle(NULL), this);
if (!hWnd) throw Win32Error(GetLastError());
if (SetProp(hWnd, TEXT("this"), (HANDLE)this))