X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f033830e257227dc73225809de2326db0093e5fe..9b66a1d31a32e9235792261db6ff755ce26ab5c1:/src/osx/cocoa/statbox.mm?ds=inline diff --git a/src/osx/cocoa/statbox.mm b/src/osx/cocoa/statbox.mm index 4ec49e32fa..34c2f27246 100644 --- a/src/osx/cocoa/statbox.mm +++ b/src/osx/cocoa/statbox.mm @@ -16,6 +16,12 @@ #include "wx/statbox.h" #include "wx/osx/private.h" +@implementation wxNSBox + +WXCOCOAIMPL_COMMON_IMPLEMENTATION_NOT_FLIPPED + +@end + wxWidgetImplType* wxWidgetImpl::CreateGroupBox( wxWindowMac* wxpeer, wxWindowMac* parent, wxWindowID id, @@ -25,12 +31,8 @@ wxWidgetImplType* wxWidgetImpl::CreateGroupBox( wxWindowMac* wxpeer, long style, long extraStyle) { - NSView* sv = (wxpeer->GetParent()->GetHandle() ); - - NSRect r = wxToNSRect( sv, wxRect( pos, size) ); - // Rect bounds = wxMacGetBoundsForControl( wxpeer, pos , size ) ; + NSRect r = wxOSXGetFrameForControl( wxpeer, pos , size ) ; wxNSBox* v = [[wxNSBox alloc] initWithFrame:r]; - [sv addSubview:v]; wxWidgetCocoaImpl* c = new wxWidgetCocoaImpl( wxpeer, v ); [v setImplementation:c]; return c;