X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ffdf1b49033b9a2d9cfda3580bc982eeb70cc3d7..0a6c4c2e3b5e0bbf40de631830d3cf479f630d67:/src/xrc/xh_scwin.cpp diff --git a/src/xrc/xh_scwin.cpp b/src/xrc/xh_scwin.cpp index e075827f4e..156a3c970b 100644 --- a/src/xrc/xh_scwin.cpp +++ b/src/xrc/xh_scwin.cpp @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: xh_scwin.cpp +// Name: src/xrc/xh_scwin.cpp // Purpose: XRC resource for wxScrolledWindow // Author: Vaclav Slavik // Created: 2002/10/18 @@ -8,10 +8,6 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifdef __GNUG__ -#pragma implementation "xh_scwin.h" -#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -19,9 +15,14 @@ #pragma hdrstop #endif +#if wxUSE_XRC + #include "wx/xrc/xh_scwin.h" -#include "wx/scrolwin.h" -#include "wx/frame.h" // to get wxNO_3D + +#ifndef WX_PRECOMP + #include "wx/frame.h" + #include "wx/scrolwin.h" +#endif IMPLEMENT_DYNAMIC_CLASS(wxScrolledWindowXmlHandler, wxXmlResourceHandler) @@ -32,7 +33,9 @@ wxScrolledWindowXmlHandler::wxScrolledWindowXmlHandler() XRC_ADD_STYLE(wxVSCROLL); // wxPanel styles +#if WXWIN_COMPATIBILITY_2_6 XRC_ADD_STYLE(wxNO_3D); +#endif // WXWIN_COMPATIBILITY_2_6 XRC_ADD_STYLE(wxTAB_TRAVERSAL); XRC_ADD_STYLE(wxWS_EX_VALIDATE_RECURSIVELY); @@ -59,3 +62,5 @@ bool wxScrolledWindowXmlHandler::CanHandle(wxXmlNode *node) { return IsOfClass(node, wxT("wxScrolledWindow")); } + +#endif // wxUSE_XRC