X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/da86e1776517d2403a687de08947698f5a608219..f7b06c8ce1bf0c34e4c5bde45181205101a5661e:/src/xrc/xh_gauge.cpp diff --git a/src/xrc/xh_gauge.cpp b/src/xrc/xh_gauge.cpp index d10a958a7b..2b8a9b9791 100644 --- a/src/xrc/xh_gauge.cpp +++ b/src/xrc/xh_gauge.cpp @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: xh_gauge.cpp +// Name: src/xrc/xh_gauge.cpp // Purpose: XRC resource for wxGauge // Author: Bob Mitchell // Created: 2000/03/21 @@ -8,10 +8,6 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifdef __GNUG__ -#pragma implementation "xh_gauge.h" -#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -19,7 +15,7 @@ #pragma hdrstop #endif -#if wxUSE_XML && wxUSE_XRC && wxUSE_GAUGE +#if wxUSE_XRC && wxUSE_GAUGE #include "wx/xrc/xh_gauge.h" #include "wx/gauge.h" @@ -31,7 +27,9 @@ wxGaugeXmlHandler::wxGaugeXmlHandler() { XRC_ADD_STYLE(wxGA_HORIZONTAL); XRC_ADD_STYLE(wxGA_VERTICAL); +#if WXWIN_COMPATIBILITY_2_6 XRC_ADD_STYLE(wxGA_PROGRESSBAR); +#endif // WXWIN_COMPATIBILITY_2_6 XRC_ADD_STYLE(wxGA_SMOOTH); // windows only AddWindowStyles(); } @@ -71,4 +69,4 @@ bool wxGaugeXmlHandler::CanHandle(wxXmlNode *node) return IsOfClass(node, wxT("wxGauge")); } -#endif // wxUSE_XML && wxUSE_XRC && wxUSE_GAUGE +#endif // wxUSE_XRC && wxUSE_GAUGE