fix for incorrect member initialization order warning
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36039 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -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);
|
||||
|
Reference in New Issue
Block a user