fixed labels under GTK+ 1 after recent changes (remove underscores from them again)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36560 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2005-12-24 02:21:00 +00:00
parent defdd88800
commit d411c5d611
2 changed files with 8 additions and 0 deletions

View 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
}
// ----------------------------------------------------------------------------

View 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
}
// ----------------------------------------------------------------------------