From: Stefan Csomor Date: Sat, 29 May 2004 14:52:16 +0000 (+0000) Subject: moving constructors to .cpp X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/94f9b1f0f3afa5cdb1f54f2bd8af582bdd78bf6f moving constructors to .cpp git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27501 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/mac/carbon/window.cpp b/src/mac/carbon/window.cpp index 62847f962c..e827a8fb93 100644 --- a/src/mac/carbon/window.cpp +++ b/src/mac/carbon/window.cpp @@ -559,6 +559,22 @@ pascal void wxMacLiveScrollbarActionProc( ControlRef control , ControlPartCode p // constructors and such // ---------------------------------------------------------------------------- +wxWindowMac::wxWindowMac() +{ + Init(); +} + +wxWindowMac::wxWindowMac(wxWindowMac *parent, + wxWindowID id, + const wxPoint& pos , + const wxSize& size , + long style , + const wxString& name ) +{ + Init(); + Create(parent, id, pos, size, style, name); +} + void wxWindowMac::Init() { m_frozenness = 0 ;