X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e7a0050ff5059829024dca96d45985b6276715f1..63effd42eaaea3594e18fd7b91372842107978cf:/src/xrc/xh_split.cpp diff --git a/src/xrc/xh_split.cpp b/src/xrc/xh_split.cpp index 2eef0d3ac4..948b241ec1 100644 --- a/src/xrc/xh_split.cpp +++ b/src/xrc/xh_split.cpp @@ -7,7 +7,7 @@ // Copyright: (c) 2003 panga@freemail.hu, Vaclav Slavik // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// - + #ifdef __GNUG__ #pragma implementation "xh_split.h" #endif @@ -19,6 +19,8 @@ #pragma hdrstop #endif +#if wxUSE_XRC + #include "wx/xrc/xh_split.h" #include "wx/splitter.h" #include "wx/log.h" @@ -60,7 +62,7 @@ wxObject *wxSplitterWindowXmlHandler::DoCreateResource() wxXmlNode *n = m_node->GetChildren(); while (n) { - if ((n->GetType() == wxXML_ELEMENT_NODE) && + if ((n->GetType() == wxXML_ELEMENT_NODE) && (n->GetName() == wxT("object") || n->GetName() == wxT("object_ref"))) { @@ -74,7 +76,7 @@ wxObject *wxSplitterWindowXmlHandler::DoCreateResource() { win2 = win; break; - } + } } n = n->GetNext(); } @@ -103,4 +105,4 @@ bool wxSplitterWindowXmlHandler::CanHandle(wxXmlNode *node) return IsOfClass(node, wxT("wxSplitterWindow")); } - +#endif // wxUSE_XRC