X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3d1a4878f36ba4b5f66c2ccfd2cb27a9dc528b6f..2fe417e4c40f5686a37d04b0e0f57a6fa6c2ceec:/src/mac/carbon/statbox.cpp diff --git a/src/mac/carbon/statbox.cpp b/src/mac/carbon/statbox.cpp index c2d3460d41..cc29e9b267 100644 --- a/src/mac/carbon/statbox.cpp +++ b/src/mac/carbon/statbox.cpp @@ -15,6 +15,8 @@ #include "wx/wxprec.h" +#if wxUSE_STATBOX + #include "wx/statbox.h" #include "wx/mac/uma.h" @@ -43,7 +45,7 @@ bool wxStaticBox::Create(wxWindow *parent, wxWindowID id, Rect bounds = wxMacGetBoundsForControl( this , pos , size ) ; - m_peer = new wxMacControl() ; + m_peer = new wxMacControl(this) ; verify_noerr(CreateGroupBoxControl(MAC_WXHWND(parent->MacGetTopLevelWindowRef()),&bounds, CFSTR("") , true /*primary*/ , m_peer->GetControlRefAddr() ) ) ; @@ -51,3 +53,5 @@ bool wxStaticBox::Create(wxWindow *parent, wxWindowID id, return TRUE; } + +#endif \ No newline at end of file