]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/radiobox.cpp
fixed warnings after GetFont prototype change
[wxWidgets.git] / src / mac / carbon / radiobox.cpp
index 83bd0a1f78becc8db80425de6abf5e46e2402c27..0fbd9fa5f1a2613e8ff188777c46ff56fe739f31 100644 (file)
@@ -137,8 +137,10 @@ bool wxRadioBox::Create(wxWindow *parent, wxWindowID id, const wxString& label,
     if ( bounds.bottom <= bounds.top )
         bounds.bottom = bounds.top + 100 ;
    
-    m_macControl = (WXWidget) ::NewControl( MAC_WXHWND(parent->MacGetTopLevelWindowRef()) , &bounds , "\p" , true , 0 , 0 , 1, 
-        kControlGroupBoxTextTitleProc , (long) this ) ;
+    m_peer = new wxMacControl() ;
+    
+    verify_noerr(CreateGroupBoxControl(MAC_WXHWND(parent->MacGetTopLevelWindowRef()),&bounds, CFSTR("") , 
+        true /*primary*/ , *m_peer ) ) ;  
     
     for (i = 0; i < n; i++)
     {