From ce0c732e0b1645f3512cf71661bccde341c5a3cb Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 6 Nov 2006 22:26:46 +0000 Subject: [PATCH] implement declared but not defined ctor not taking wxGLContext git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43132 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/cocoa/glcanvas.mm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/cocoa/glcanvas.mm b/src/cocoa/glcanvas.mm index ebb3a16cd6..a41176c1c6 100644 --- a/src/cocoa/glcanvas.mm +++ b/src/cocoa/glcanvas.mm @@ -28,6 +28,14 @@ BEGIN_EVENT_TABLE(wxGLCanvas, wxWindow) END_EVENT_TABLE() // WX_IMPLEMENT_COCOA_OWNER(wxGLCanvas,NSOpenGLView,NSView,NSView) +wxGLCanvas::wxGLCanvas(wxWindow *parent, + wxWindowID winid, const wxPoint& pos, const wxSize& size, + long style, const wxString& name, + int *attribList, const wxPalette& palette) +{ + Create(parent,winid,pos,size,style,name); +} + wxGLCanvas::wxGLCanvas(wxWindow *parent, const wxGLContext *shared, wxWindowID winid, const wxPoint& pos, const wxSize& size, -- 2.45.2