]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/control.cpp
Added empty wxDataViewCtrl header and control name string.
[wxWidgets.git] / src / gtk / control.cpp
index ee15a56961bf9c3d71b2cbaa1e11702452e8ec6b..d339e25aeb5122ad2c6738eccdfa9b3b0f88c241 100644 (file)
@@ -208,7 +208,11 @@ wxString wxControl::GTKRemoveMnemonics(const wxString& label)
 /* static */
 wxString wxControl::GTKConvertMnemonics(const wxString& label)
 {
+#ifdef __WXGTK20__
     return GTKProcessMnemonics(label, MNEMONICS_CONVERT);
+#else
+    return GTKRemoveMnemonics(label);
+#endif
 }
 
 // ----------------------------------------------------------------------------