]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/src/xml/xh_bmp.cpp
test for bug with new wu-ftpd
[wxWidgets.git] / contrib / src / xml / xh_bmp.cpp
index c83a264430c18b4476ef0168d88f2c72e4b822df..a5eb0341b5721f05ab06905e0379601ceba8b501 100644 (file)
@@ -37,7 +37,7 @@ wxObject *wxBitmapXmlHandler::DoCreateResource()
 
 bool wxBitmapXmlHandler::CanHandle(wxXmlNode *node)
 {
 
 bool wxBitmapXmlHandler::CanHandle(wxXmlNode *node)
 {
-    return node->GetName() == _T("bitmap");
+    return IsOfClass(node, _T("wxBitmap"));
 }
 
 
 }
 
 
@@ -55,6 +55,6 @@ wxObject *wxIconXmlHandler::DoCreateResource()
 
 bool wxIconXmlHandler::CanHandle(wxXmlNode *node)
 {
 
 bool wxIconXmlHandler::CanHandle(wxXmlNode *node)
 {
-    return node->GetName() == _T("icon");
+    return IsOfClass(node, _T("wxIcon"));
 }
 
 }