wxObject *wxStaticBitmapXmlHandler::DoCreateResource()
{
- wxStaticBitmap *bmp = new wxStaticBitmap(m_parentAsWindow,
- GetID(),
- GetBitmap(wxT("bitmap"), GetSize()),
- GetPosition(), GetSize(),
- GetStyle(),
- GetName()
- );
+ XRC_MAKE_INSTANCE(bmp, wxStaticBitmap)
+
+ bmp->Create(m_parentAsWindow,
+ GetID(),
+ GetBitmap(wxT("bitmap"), GetSize()),
+ GetPosition(), GetSize(),
+ GetStyle(),
+ GetName());
+
SetupWindow(bmp);
return bmp;
}
-
-
bool wxStaticBitmapXmlHandler::CanHandle(wxXmlNode *node)
{
return IsOfClass(node, wxT("wxStaticBitmap"));
}
-
-