From d94953ef9112c4bcb1ee33a024b7d3253109fc19 Mon Sep 17 00:00:00 2001 From: "Zheng, Lei" Date: Sun, 6 Mar 2022 21:03:37 +0800 Subject: [PATCH] Fix build warning --- src/Gui/ShortcutManager.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gui/ShortcutManager.h b/src/Gui/ShortcutManager.h index a928b811b1..bca1f73c76 100644 --- a/src/Gui/ShortcutManager.h +++ b/src/Gui/ShortcutManager.h @@ -128,7 +128,7 @@ private: ActionData(QAction *action, const char *name = "") : key(action->shortcut(), name) - , pointer(reinterpret_cast(action)) + , pointer(reinterpret_cast(action)) , action(action) {} };