X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/dbeddfb93d3479d03d8ec4c0121dfbe3bbcc422b..a51e79e87db3512823258d487849bb7e7947b700:/src/osx/cocoa/statline.mm diff --git a/src/osx/cocoa/statline.mm b/src/osx/cocoa/statline.mm index 6fc86cc2e2..f29e731df7 100644 --- a/src/osx/cocoa/statline.mm +++ b/src/osx/cocoa/statline.mm @@ -3,7 +3,7 @@ // Purpose: wxStaticLine class // Author: Stefan Csomor // Created: 28.06.99 -// Version: $Id: statline.mm 54129 2008-06-11 19:30:52Z SC $ +// Version: $Id$ // Copyright: (c) 2008 Stefan Csomor // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -33,21 +33,17 @@ #include "wx/osx/private.h" -wxWidgetImplType* wxWidgetImpl::CreateStaticLine( wxWindowMac* wxpeer, - wxWindowMac* parent, - wxWindowID id, - const wxPoint& pos, +wxWidgetImplType* wxWidgetImpl::CreateStaticLine( wxWindowMac* wxpeer, + wxWindowMac* WXUNUSED(parent), + wxWindowID WXUNUSED(id), + const wxPoint& pos, const wxSize& size, - long style, - long extraStyle) + long WXUNUSED(style), + long WXUNUSED(extraStyle)) { - NSView* sv = (wxpeer->GetParent()->GetHandle() ); - 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; }