// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma implementation "xh_bmp.h"
#endif
#pragma hdrstop
#endif
-#if wxUSE_XML && wxUSE_XRC
+#if wxUSE_XRC
#include "wx/xrc/xh_bmp.h"
#include "wx/bitmap.h"
wxObject *wxBitmapXmlHandler::DoCreateResource()
{
- return new wxBitmap(GetBitmap(wxT("")));
+ return new wxBitmap(GetBitmap(wxEmptyString));
}
bool wxBitmapXmlHandler::CanHandle(wxXmlNode *node)
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_XML && wxUSE_XRC
+#endif // wxUSE_XRC