From: Julian Smart Date: Mon, 19 Jan 2004 08:15:35 +0000 (+0000) Subject: Added back constructor implementations X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/cde47db3d8b3ebd3046204e8b9facb9be777fb8a Added back constructor implementations git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25247 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/generic/mdig.h b/include/wx/generic/mdig.h index 62760707af..6a9ecbf146 100644 --- a/include/wx/generic/mdig.h +++ b/include/wx/generic/mdig.h @@ -281,7 +281,10 @@ public: const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_FRAME_STYLE | wxVSCROLL | wxHSCROLL, - const wxString& name = wxFrameNameStr) ; + const wxString& name = wxFrameNameStr) + :wxGenericMDIParentFrame(parent, winid, title, pos, size, style, name) + { + } wxMDIChildFrame * GetActiveChild() const ; @@ -305,7 +308,10 @@ public: const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_FRAME_STYLE, - const wxString& name = wxFrameNameStr ) ; + const wxString& name = wxFrameNameStr ) + :wxGenericMDIChildFrame(parent, winid, title, pos, size, style, name) + { + } private: DECLARE_DYNAMIC_CLASS(wxMDIChildFrame) };