]> git.saurik.com Git - wxWidgets.git/commitdiff
Make it possible to subclass wxMenuBar in XRC (patch #11679).
authorVáclav Slavík <vslavik@fastmail.fm>
Thu, 11 Feb 2010 12:48:29 +0000 (12:48 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Thu, 11 Feb 2010 12:48:29 +0000 (12:48 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63467 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/xrc/xh_menu.cpp

index f6cc1963f1c3d8187f8a8ccb6c8dc5b5ed776dd8..275c78aa622a705593753aab5f4f79a2bdbacbf5 100644 (file)
@@ -148,7 +148,17 @@ wxMenuBarXmlHandler::wxMenuBarXmlHandler() : wxXmlResourceHandler()
 
 wxObject *wxMenuBarXmlHandler::DoCreateResource()
 {
-    wxMenuBar *menubar = new wxMenuBar(GetStyle());
+    wxMenuBar *menubar = NULL;
+
+    const int style = GetStyle();
+    wxASSERT_MSG(!style || !m_instance,
+                 "cannot use <style> with pre-created menubar");
+
+    if ( m_instance )
+        menubar = wxDynamicCast(m_instance, wxMenuBar);
+    if ( !menubar )
+        menubar = new wxMenuBar(style);
+
     CreateChildren(menubar);
 
     if (m_parentAsWindow)