From cde47db3d8b3ebd3046204e8b9facb9be777fb8a Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Mon, 19 Jan 2004 08:15:35 +0000 Subject: [PATCH] Added back constructor implementations git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25247 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/generic/mdig.h | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) 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) }; -- 2.47.2