aboutsummaryrefslogtreecommitdiff
path: root/c/window.h
diff options
context:
space:
mode:
Diffstat (limited to 'c/window.h')
-rw-r--r--c/window.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/c/window.h b/c/window.h
index 16ea48e..9f399ba 100644
--- a/c/window.h
+++ b/c/window.h
@@ -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.");
- if (!GetSubMenu(hm, 0))
- throw Err(WINDOWS, L"Submenu could not be retrieved: %s.");
+ throw Err(WINDOWS, L"Context menu could not be loaded");
+ if (!(hm = GetSubMenu(hm, 0)))
+ throw Err(WINDOWS, L"Submenu could not be retrieved");
return hm;
}();