]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/stattext.cpp
using font substitution (allows for fallbacks when unicode chars are not available...
[wxWidgets.git] / src / mac / carbon / stattext.cpp
index f01e11f66652f8a4b79cbacfbb78325dfb8cd1d1..6f22db270cb3714cbc107bf980e638242e8bf04f 100644 (file)
@@ -15,6 +15,8 @@
 
 #include "wx/wxprec.h"
 
 
 #include "wx/wxprec.h"
 
+#if wxUSE_STATTEXT
+
 #include "wx/app.h"
 #include "wx/stattext.h"
 #include "wx/notebook.h"
 #include "wx/app.h"
 #include "wx/stattext.h"
 #include "wx/notebook.h"
@@ -51,7 +53,7 @@ bool wxStaticText::Create(wxWindow *parent, wxWindowID id,
 
     Rect bounds = wxMacGetBoundsForControl( this , pos , size ) ;
     wxMacCFStringHolder str(m_label,m_font.GetEncoding() ) ;
 
     Rect bounds = wxMacGetBoundsForControl( this , pos , size ) ;
     wxMacCFStringHolder str(m_label,m_font.GetEncoding() ) ;
-    m_peer = new wxMacControl() ;
+    m_peer = new wxMacControl(this) ;
     verify_noerr(CreateStaticTextControl(MAC_WXHWND(parent->MacGetTopLevelWindowRef()),&bounds, str , 
         NULL , m_peer->GetControlRefAddr() ) ) ;  
 
     verify_noerr(CreateStaticTextControl(MAC_WXHWND(parent->MacGetTopLevelWindowRef()),&bounds, str , 
         NULL , m_peer->GetControlRefAddr() ) ) ;  
 
@@ -119,3 +121,6 @@ bool wxStaticText::SetFont(const wxFont& font)
 
     return ret;
 }
 
     return ret;
 }
+
+#endif //if wxUSE_STATTEXT
+