X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4ac23d05f46648424fecee8399e2cfa9f85064be..4b4e81ee65f1448c8c467a3107eadb80c15bf3bc:/src/xrc/xh_chckb.cpp diff --git a/src/xrc/xh_chckb.cpp b/src/xrc/xh_chckb.cpp index 426a3746ad..4f84fccd36 100644 --- a/src/xrc/xh_chckb.cpp +++ b/src/xrc/xh_chckb.cpp @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: xh_chckb.cpp +// Name: src/xrc/xh_chckb.cpp // Purpose: XRC resource for wxCheckBox // Author: Bob Mitchell // Created: 2000/03/21 @@ -8,10 +8,6 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifdef __GNUG__ -#pragma implementation "xh_chckb.h" -#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -19,10 +15,13 @@ #pragma hdrstop #endif +#if wxUSE_XRC && wxUSE_CHECKBOX + #include "wx/xrc/xh_chckb.h" -#include "wx/checkbox.h" -#if wxUSE_CHECKBOX +#ifndef WX_PRECOMP + #include "wx/checkbox.h" +#endif IMPLEMENT_DYNAMIC_CLASS(wxCheckBoxXmlHandler, wxXmlResourceHandler) @@ -59,4 +58,4 @@ bool wxCheckBoxXmlHandler::CanHandle(wxXmlNode *node) return IsOfClass(node, wxT("wxCheckBox")); } -#endif +#endif // wxUSE_XRC && wxUSE_CHECKBOX