From 364c7f3c681656e74b8c9bad0957b4c0ce892cf1 Mon Sep 17 00:00:00 2001 From: Michael Bedward Date: Thu, 12 Aug 1999 08:51:45 +0000 Subject: [PATCH] if'd out CheckForKeyDown call that doesn't seem to be necessary now (but we still need CheckForKeyUp() - why??? git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3352 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/motif/app.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/motif/app.cpp b/src/motif/app.cpp index e3c8bb71a9..6cf5ad773d 100644 --- a/src/motif/app.cpp +++ b/src/motif/app.cpp @@ -352,11 +352,13 @@ void wxApp::ProcessXEvent(WXEvent* _event) // accelerator. return; } +#if 0 // this isn't necessary anymore ??? -michael else if (CheckForKeyDown(_event)) { // We intercepted and processed the key down event return; } +#endif else { XtDispatchEvent(event); @@ -365,6 +367,8 @@ void wxApp::ProcessXEvent(WXEvent* _event) } else if (event->type == KeyRelease) { + // TODO: work out why we still need this ! -michael + // if (CheckForKeyUp(_event)) { // We intercepted and processed the key up event -- 2.47.2