+void wxButton::SetLabel(const wxString& label)
+{
+ if ( GetId() == wxID_HELP || HasFlag(wxBU_NOTEXT) )
+ {
+ // just store the label internally but don't really use it for the
+ // button
+ m_labelOrig =
+ m_label = label;
+ return;
+ }
+
+ wxButtonBase::SetLabel(label);
+}
+