#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");
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);