summaryrefslogtreecommitdiff
path: root/wx+/key_event.h
diff options
context:
space:
mode:
Diffstat (limited to 'wx+/key_event.h')
-rw-r--r--wx+/key_event.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/wx+/key_event.h b/wx+/key_event.h
index 60cb7372..cd75bb78 100644
--- a/wx+/key_event.h
+++ b/wx+/key_event.h
@@ -62,8 +62,8 @@ public:
callback_(callback),
processingCallback(false)
{
- Hide(); //this is just a dummy window so that its parent can have ownership
- Disable(); //
+ Hide(); //this is just a dummy window so that its parent can have ownership
+ Disable(); //
//register global hotkeys (without needing explicit menu entry)
wxTheApp->Connect(wxEVT_KEY_DOWN, wxKeyEventHandler(LokalKeyEventHandler::onGlobalKeyEvent), nullptr, this);
bgstack15