X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/854e189f90dac9ba5e0239bca79aed64e8d6f46c..3b96fc2f1b64f78bba7c755a5c14f618962f696b:/src/xrc/xh_bmp.cpp?ds=sidebyside diff --git a/src/xrc/xh_bmp.cpp b/src/xrc/xh_bmp.cpp index c7a1ed9b5a..57d7985107 100644 --- a/src/xrc/xh_bmp.cpp +++ b/src/xrc/xh_bmp.cpp @@ -7,10 +7,6 @@ // Copyright: (c) 2000 Vaclav Slavik // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// - -#ifdef __GNUG__ -#pragma implementation "xh_bmp.h" -#endif // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -19,19 +15,21 @@ #pragma hdrstop #endif +#if wxUSE_XRC + #include "wx/xrc/xh_bmp.h" #include "wx/bitmap.h" IMPLEMENT_DYNAMIC_CLASS(wxBitmapXmlHandler, wxXmlResourceHandler) -wxBitmapXmlHandler::wxBitmapXmlHandler() -: wxXmlResourceHandler() +wxBitmapXmlHandler::wxBitmapXmlHandler() +: wxXmlResourceHandler() { } wxObject *wxBitmapXmlHandler::DoCreateResource() -{ - return new wxBitmap(GetBitmap(wxT(""))); +{ + return new wxBitmap(GetBitmap(wxEmptyString)); } bool wxBitmapXmlHandler::CanHandle(wxXmlNode *node) @@ -41,17 +39,19 @@ bool wxBitmapXmlHandler::CanHandle(wxXmlNode *node) IMPLEMENT_DYNAMIC_CLASS(wxIconXmlHandler, wxXmlResourceHandler) -wxIconXmlHandler::wxIconXmlHandler() -: wxXmlResourceHandler() +wxIconXmlHandler::wxIconXmlHandler() +: wxXmlResourceHandler() { } wxObject *wxIconXmlHandler::DoCreateResource() -{ - return new wxIcon(GetIcon(wxT(""))); +{ + return new wxIcon(GetIcon(wxEmptyString)); } bool wxIconXmlHandler::CanHandle(wxXmlNode *node) { return IsOfClass(node, wxT("wxIcon")); } + +#endif // wxUSE_XRC