]> git.saurik.com Git - wxWidgets.git/commitdiff
disabled accelerators in wxMotif - they don't work anyhow, but break
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 23 Jul 1999 21:08:22 +0000 (21:08 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 23 Jul 1999 21:08:22 +0000 (21:08 +0000)
everything

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3108 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/motif/utils.cpp

index e4cdc74fea9b6ffcfc091da98a6238d1b9ba31d2..279ad20b331253193dcf8099cef6816d2f37fe4f 100644 (file)
@@ -727,6 +727,10 @@ char wxFindMnemonic (const char *s)
 
 char * wxFindAccelerator (const char *s)
 {
+    // VZ: this function returns incorrect keysym which completely breaks kbd
+    //     handling
+    return NULL;
+
     // The accelerator text is after the \t char.
     while (*s && *s != '\t')
         s++;
@@ -778,6 +782,10 @@ char * wxFindAccelerator (const char *s)
 
 XmString wxFindAcceleratorText (const char *s)
 {
+    // VZ: this function returns incorrect keysym which completely breaks kbd
+    //     handling
+    return NULL;
+
     // The accelerator text is after the \t char.
     while (*s && *s != '\t')
         s++;