]> git.saurik.com Git - wxWidgets.git/commitdiff
moving constructors to .cpp
authorStefan Csomor <csomor@advancedconcepts.ch>
Sat, 29 May 2004 14:52:16 +0000 (14:52 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Sat, 29 May 2004 14:52:16 +0000 (14:52 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27501 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mac/carbon/window.cpp

index 62847f962c3177db3c4127f9a8abc830205965c7..e827a8fb93ed5abbe1529ba7cef51c6a66ab6e66 100644 (file)
@@ -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 ;