X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/31528cd3cac75558beef4bce0ba21fd182a808ab..e7494fa9961c39cd14069ef8b12f5c059c7d3b35:/src/gtk/control.cpp diff --git a/src/gtk/control.cpp b/src/gtk/control.cpp index 90b16f3d70..12cc6a70df 100644 --- a/src/gtk/control.cpp +++ b/src/gtk/control.cpp @@ -36,20 +36,16 @@ wxControl::wxControl( wxWindow *parent, { } -void wxControl::Command( wxCommandEvent &WXUNUSED(event) ) -{ -} - void wxControl::SetLabel( const wxString &label ) { - m_label = _T(""); - for ( const wxChar *pc = label; *pc != _T('\0'); pc++ ) + m_label.Empty(); + for ( const wxChar *pc = label; *pc != wxT('\0'); pc++ ) { - if ( *pc == _T('&') ) + if ( *pc == wxT('&') ) { pc++; // skip it #if 0 // it would be unused anyhow for now - kbd interface not done yet - if ( *pc != _T('&') ) m_chAccel = *pc; + if ( *pc != wxT('&') ) m_chAccel = *pc; #endif } m_label << *pc;