X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3304646d0657d889ad676485a4b635e2032b0038..da1f0e87e2c24ad9ee7647261dd986ad3e8d60eb:/src/xrc/xh_statbar.cpp?ds=sidebyside

diff --git a/src/xrc/xh_statbar.cpp b/src/xrc/xh_statbar.cpp
index fc701a23f7..fe14c250d7 100644
--- a/src/xrc/xh_statbar.cpp
+++ b/src/xrc/xh_statbar.cpp
@@ -78,9 +78,9 @@ wxObject *wxStatusBarXmlHandler::DoCreateResource()
                 style[i] = wxSB_FLAT;
             else if (first == wxT("wxSB_RAISED"))
                 style[i] = wxSB_RAISED;
-
-            if (!first.empty())
+            else if (!first.empty())
                 wxLogError(wxT("Error in resource, unknown statusbar field style: ") + first);
+
             if(styles.Find(wxT(',')))
                 styles.Remove(0, styles.Find(wxT(',')) + 1);
         }
@@ -88,6 +88,8 @@ wxObject *wxStatusBarXmlHandler::DoCreateResource()
         delete [] style;
     }
 
+    CreateChildren(statbar);
+
     if (m_parentAsWindow)
     {
         wxFrame *parentFrame = wxDynamicCast(m_parent, wxFrame);