From 7d49fd07810f9a3cfcfe1b7f4b8f62ffd40748a4 Mon Sep 17 00:00:00 2001 From: Tim Kosse Date: Sun, 20 Feb 2011 10:26:32 +0000 Subject: [PATCH] Need to call wxFrame::Create instead of wxWindowBase::CreateBase in the wxPseudoTransparentFrame constructor. Fixes crash reported in #11474 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@66980 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/aui/framemanager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aui/framemanager.cpp b/src/aui/framemanager.cpp index 8224808deb..1dccff2527 100644 --- a/src/aui/framemanager.cpp +++ b/src/aui/framemanager.cpp @@ -249,7 +249,7 @@ public: long style = wxDEFAULT_FRAME_STYLE, const wxString &name = wxT("frame")) { - if (!CreateBase( parent, id, pos, size, style, wxDefaultValidator, name )) + if (!Create( parent, id, title, pos, size, style, name )) return; m_title = title;