diff options
author | John Ankarström <john@ankarstrom.se> | 2022-09-07 01:22:30 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2022-09-07 01:22:30 +0200 |
commit | ac7d676a1c457f71f1d3ae17d74699dd95c9c985 (patch) | |
tree | 96d44cc6740de053db377ac51f3102b9871a90d4 /c/listview.cpp | |
parent | b2a018ff822bcdb5b9b691025a5fc1eb6fc13b4b (diff) | |
download | EpisodeBrowser-ac7d676a1c457f71f1d3ae17d74699dd95c9c985.tar.gz |
Normalize error message formatting.
Diffstat (limited to 'c/listview.cpp')
-rw-r--r-- | c/listview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/c/listview.cpp b/c/listview.cpp index 0615ed0..537dbce 100644 --- a/c/listview.cpp +++ b/c/listview.cpp @@ -22,12 +22,12 @@ ListView::ListView(Window& parent, const HMENU hMenu, const DWORD dwStyle) : par dwStyle|WS_CHILD|WS_VISIBLE|WS_VSCROLL|WS_TABSTOP|LVS_REPORT|LVS_SHOWSELALWAYS, 0, 0, 0, 0, parent.hWnd, hMenu, GetModuleHandle(nullptr), this))) - throw Err(WINDOWS, L"List view could not be created: %s"); + throw Err(WINDOWS, L"List view could not be created: %s."); m_proc0 = reinterpret_cast<WNDPROC>(SetWindowLongPtr( hWnd, GWLP_WNDPROC, reinterpret_cast<LONG_PTR>(Except<::WndProc>))); if (!SetPropW(hWnd, L"this", reinterpret_cast<HANDLE>(this))) - throw Err(WINDOWS, L"List view property could not be set: %s"); + throw Err(WINDOWS, L"List view property could not be set: %s."); ListView_SetExtendedListViewStyle(hWnd, LVS_EX_FULLROWSELECT|LVS_EX_DOUBLEBUFFER); SendMessageW(hWnd, WM_SETFONT, reinterpret_cast<WPARAM>(g_hfNormal), MAKELPARAM(FALSE, 0)); } |