X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2ddb4d13585d5235556119fb1937273da9e433a3..623d5f80029803f1394e89732e16e19e82a22e2a:/src/xrc/xh_treebk.cpp?ds=sidebyside diff --git a/src/xrc/xh_treebk.cpp b/src/xrc/xh_treebk.cpp index a79a01b9a3..8f2fdaedf3 100644 --- a/src/xrc/xh_treebk.cpp +++ b/src/xrc/xh_treebk.cpp @@ -19,14 +19,19 @@ #include "wx/xrc/xh_treebk.h" +#ifndef WX_PRECOMP + #include "wx/log.h" +#endif + #include "wx/treebook.h" #include "wx/imaglist.h" -#include "wx/log.h" 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); @@ -121,7 +126,7 @@ wxObject *wxTreebookXmlHandler::DoCreateResource() } else { - m_tbk->AddSubPage(m_treeContext.Item(depth - 1), wnd, + m_tbk->InsertSubPage(m_treeContext.Item(depth - 1), wnd, GetText(wxT("label")), GetBool(wxT("selected")), imgIndex); }