// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma implementation "xh_bmp.h"
-#endif
-
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
wxObject *wxBitmapXmlHandler::DoCreateResource()
{
+ // NB: empty parameter name means "take directly from this node's next
+ // instead of from subnode with given name"
return new wxBitmap(GetBitmap(wxEmptyString));
}
wxObject *wxIconXmlHandler::DoCreateResource()
{
+ // NB: empty parameter name means "take directly from this node's next
+ // instead of from subnode with given name"
return new wxIcon(GetIcon(wxEmptyString));
}