X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4a2e5ee8f9db480a7522a4dec679647829050c94..d10e22fe8ad283f37b1809349028ffc282e393ce:/src/common/ctrlcmn.cpp diff --git a/src/common/ctrlcmn.cpp b/src/common/ctrlcmn.cpp index 9f6df5c86f..2bb9ab4520 100644 --- a/src/common/ctrlcmn.cpp +++ b/src/common/ctrlcmn.cpp @@ -31,12 +31,10 @@ #ifndef WX_PRECOMP #include "wx/log.h" #include "wx/radiobut.h" -#endif - -#if wxUSE_STATBMP - #include "wx/bitmap.h" #include "wx/statbmp.h" -#endif // wxUSE_STATBMP + #include "wx/bitmap.h" + #include "wx/utils.h" // for wxStripMenuCodes() +#endif const wxChar wxControlNameStr[] = wxT("control"); @@ -88,6 +86,13 @@ bool wxControlBase::CreateControl(wxWindowBase *parent, return true; } +/* static */ +wxString wxControlBase::GetLabelText(const wxString& label) +{ + // we don't want strip the TABs here, just the mnemonics + return wxStripMenuCodes(label, wxStrip_Mnemonics); +} + void wxControlBase::Command(wxCommandEvent& event) { (void)GetEventHandler()->ProcessEvent(event);