X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/634fb7504832dedd77544da4b8dc0a9a5379e9eb..74fd4fd42a1b530b346ff3b9518e1bdba7e813f4:/src/gtk1/control.cpp?ds=sidebyside diff --git a/src/gtk1/control.cpp b/src/gtk1/control.cpp index ee15a56961..d339e25aeb 100644 --- a/src/gtk1/control.cpp +++ b/src/gtk1/control.cpp @@ -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 } // ----------------------------------------------------------------------------