From: Vadim Zeitlin Date: Sun, 30 Oct 2005 20:20:27 +0000 (+0000) Subject: fix for incorrect member initialization order warning X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/1f00af0e9e76648894c0e7b2f89abfafe85fc08e?ds=inline fix for incorrect member initialization order warning git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36039 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/xrc/xh_treebk.cpp b/src/xrc/xh_treebk.cpp index a79a01b9a3..ed2c6ce3bc 100644 --- a/src/xrc/xh_treebk.cpp +++ b/src/xrc/xh_treebk.cpp @@ -26,7 +26,9 @@ IMPLEMENT_DYNAMIC_CLASS(wxTreebookXmlHandler, wxXmlResourceHandler) wxTreebookXmlHandler::wxTreebookXmlHandler() -: wxXmlResourceHandler(), m_isInside(false), m_tbk(NULL), m_treeContext() + : wxXmlResourceHandler(), + m_tbk(NULL), + m_isInside(false) { XRC_ADD_STYLE(wxBK_DEFAULT); XRC_ADD_STYLE(wxBK_TOP);