From 1f00af0e9e76648894c0e7b2f89abfafe85fc08e Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 30 Oct 2005 20:20:27 +0000 Subject: [PATCH] fix for incorrect member initialization order warning git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36039 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/xrc/xh_treebk.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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); -- 2.45.2