diff options
Diffstat (limited to 'c/window.h')
-rw-r--r-- | c/window.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -19,9 +19,9 @@ struct Window { HMENU hm; if (!(hm = LoadMenuW(nullptr, MAKEINTRESOURCE(IDR_POPUPMENU)))) - throw Err(WINDOWS, L"Context menu could not be loaded: %s"); + throw Err(WINDOWS, L"Context menu could not be loaded: %s."); if (!GetSubMenu(hm, 0)) - throw Err(WINDOWS, L"Submenu could not be retrieved: %s"); + throw Err(WINDOWS, L"Submenu could not be retrieved: %s."); return hm; }(); |