/////////////////////////////////////////////////////////////////////////////
-// Name: src/osx/carbon/stattext.cpp
+// Name: src/osx/stattext_osx.cpp
// Purpose: wxStaticText
// Author: Stefan Csomor
// Modified by:
const wxSize& size,
long style,
const wxString& name )
-{
- m_macIsUserPane = false;
-
+{
+ DontCreatePeer();
+
if ( !wxControl::Create( parent, id, pos, size, style, wxDefaultValidator, name ) )
return false;
- m_peer = wxWidgetImpl::CreateStaticText( this, parent, id, label, pos, size, style, GetExtraStyle() );
+ SetPeer(wxWidgetImpl::CreateStaticText( this, parent, id, label, pos, size, style, GetExtraStyle() ));
MacPostControlCreate( pos, size );
void wxStaticText::DoSetLabel(const wxString& label)
{
m_label = RemoveMnemonics(label);
- m_peer->SetLabel(m_label , GetFont().GetEncoding() );
+ GetPeer()->SetLabel(m_label , GetFont().GetEncoding() );
}
#if wxUSE_MARKUP && wxOSX_USE_COCOA
if ( !wxStaticTextBase::DoSetLabelMarkup(markup) )
return false;
- m_peer->SetLabelMarkup(markup);
+ GetPeer()->SetLabelMarkup(markup);
return true;
}