X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6def7a17b01a15e68696a1863d114ecc5554e3d4..926ce9e3ac32e1a33cc43420f76876fac8868436:/src/xrc/xh_mdi.cpp?ds=sidebyside diff --git a/src/xrc/xh_mdi.cpp b/src/xrc/xh_mdi.cpp index 21010352f7..5838d7c288 100644 --- a/src/xrc/xh_mdi.cpp +++ b/src/xrc/xh_mdi.cpp @@ -8,10 +8,6 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma implementation "xh_mdi.h" -#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -68,7 +64,7 @@ wxWindow *wxMdiXmlHandler::CreateFrame() { XRC_MAKE_INSTANCE(frame, wxMDIParentFrame); - ((wxMDIParentFrame*)frame)->Create(m_parentAsWindow, + frame->Create(m_parentAsWindow, GetID(), GetText(wxT("title")), wxDefaultPosition, wxDefaultSize, @@ -86,7 +82,7 @@ wxWindow *wxMdiXmlHandler::CreateFrame() XRC_MAKE_INSTANCE(frame, wxMDIChildFrame); - ((wxMDIChildFrame*) frame)->Create(mdiParent, + frame->Create(mdiParent, GetID(), GetText(wxT("title")), wxDefaultPosition, wxDefaultSize, @@ -105,10 +101,11 @@ wxObject *wxMdiXmlHandler::DoCreateResource() frame->SetClientSize(GetSize()); if (HasParam(wxT("pos"))) frame->Move(GetPosition()); - if (HasParam(wxT("icon")) && frame->IsKindOf(CLASSINFO(wxFrame))) + if (HasParam(wxT("icon"))) { - wxFrame* f = wxDynamicCast(f, wxFrame); - f->SetIcon(GetIcon(wxT("icon"), wxART_FRAME_ICON)); + wxFrame* f = wxDynamicCast(frame, wxFrame); + if (f) + f->SetIcon(GetIcon(wxT("icon"), wxART_FRAME_ICON)); } SetupWindow(frame);