X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/da86e1776517d2403a687de08947698f5a608219..4e21ce0825a34b77f1c0bad9a209d9e33cbc7d96:/src/xrc/xh_chckb.cpp diff --git a/src/xrc/xh_chckb.cpp b/src/xrc/xh_chckb.cpp index 52160e255e..9499c652f1 100644 --- a/src/xrc/xh_chckb.cpp +++ b/src/xrc/xh_chckb.cpp @@ -1,17 +1,12 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: xh_chckb.cpp +// Name: src/xrc/xh_chckb.cpp // Purpose: XRC resource for wxCheckBox // Author: Bob Mitchell // Created: 2000/03/21 -// RCS-ID: $Id$ // Copyright: (c) 2000 Bob Mitchell and Verant Interactive // 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 +14,13 @@ #pragma hdrstop #endif -#if wxUSE_XML && wxUSE_XRC && wxUSE_CHECKBOX +#if wxUSE_XRC && wxUSE_CHECKBOX #include "wx/xrc/xh_chckb.h" -#include "wx/checkbox.h" + +#ifndef WX_PRECOMP + #include "wx/checkbox.h" +#endif IMPLEMENT_DYNAMIC_CLASS(wxCheckBoxXmlHandler, wxXmlResourceHandler) @@ -59,4 +57,4 @@ bool wxCheckBoxXmlHandler::CanHandle(wxXmlNode *node) return IsOfClass(node, wxT("wxCheckBox")); } -#endif // wxUSE_XML && wxUSE_XRC && wxUSE_CHECKBOX +#endif // wxUSE_XRC && wxUSE_CHECKBOX