]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/utils.cpp
New makefiles for GTK and Motif, using configure but not
[wxWidgets.git] / src / motif / utils.cpp
index e4cdc74fea9b6ffcfc091da98a6238d1b9ba31d2..094a3e869901d2e55565652c89950ef378f57a2d 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++;
@@ -1126,8 +1134,11 @@ void wxAllocNearestColor(Display *d,Colormap cmp,XColor *xc)
     xc -> green = color_defs[pixel].green;
     xc -> blue = color_defs[pixel].blue;
     xc -> flags = DoRed | DoGreen | DoBlue;
+    
+/*  FIXME, TODO
     if (!XAllocColor(d,cmp,xc))
         cout << "wxAllocNearestColor : Warning : Cannot find nearest color !\n";
+*/
 
     delete[] color_defs;
 }