From: Václav Slavík Date: Tue, 30 Sep 2008 14:36:55 +0000 (+0000) Subject: wxToolBar XRC handler should call SetupWindow() to handle standard window properties too X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/623114052c4973e3fa9c09569bf3fece351729ed wxToolBar XRC handler should call SetupWindow() to handle standard window properties too git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55978 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/xrc/xh_toolb.cpp b/src/xrc/xh_toolb.cpp index 02f7f8893a..c1bda2419f 100644 --- a/src/xrc/xh_toolb.cpp +++ b/src/xrc/xh_toolb.cpp @@ -100,6 +100,7 @@ wxObject *wxToolBarXmlHandler::DoCreateResource() GetSize(), style, GetName()); + SetupWindow(toolbar); wxSize bmpsize = GetSize(wxT("bitmapsize")); if (!(bmpsize == wxDefaultSize)) @@ -113,8 +114,6 @@ wxObject *wxToolBarXmlHandler::DoCreateResource() long separation = GetLong(wxT("separation"), -1); if (separation != -1) toolbar->SetToolSeparation(separation); - if (HasParam(wxT("bg"))) - toolbar->SetBackgroundColour(GetColour(wxT("bg"))); wxXmlNode *children_node = GetParamNode(wxT("object")); if (!children_node)