git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60719
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
{
public:
// default ctor, use Create() after it
{
public:
// default ctor, use Create() after it
- wxDocChildFrameAnyBase() { m_win = NULL; }
+ wxDocChildFrameAnyBase()
+ {
+ m_childDocument = NULL;
+ m_childView = NULL;
+ m_win = NULL;
+ }
// full ctor equivalent to using the default one and Create(0
wxDocChildFrameAnyBase(wxDocument *doc, wxView *view, wxWindow *win)
// full ctor equivalent to using the default one and Create(0
wxDocChildFrameAnyBase(wxDocument *doc, wxView *view, wxWindow *win)
long style = wxDEFAULT_FRAME_STYLE,
const wxString& name = wxFrameNameStr)
{
long style = wxDEFAULT_FRAME_STYLE,
const wxString& name = wxFrameNameStr)
{
- if ( !BaseClass::Create(parent, id, title, pos, size, style, name) )
+ if ( !wxDocChildFrameAnyBase::Create(doc, view, this) )
- if ( !wxDocChildFrameAnyBase::Create(doc, view, this) )
+ if ( !BaseClass::Create(parent, id, title, pos, size, style, name) )
return false;
this->Connect(wxEVT_ACTIVATE,
return false;
this->Connect(wxEVT_ACTIVATE,