]> git.saurik.com Git - wxWidgets.git/commitdiff
wxIcon correctly handled now (it has no "icon" tag)
authorRoman Rolinsky <rolinsky@femagsoft.com>
Sun, 26 Dec 2004 02:32:23 +0000 (02:32 +0000)
committerRoman Rolinsky <rolinsky@femagsoft.com>
Sun, 26 Dec 2004 02:32:23 +0000 (02:32 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31145 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/wx/tools/XRCed/xxx.py

index 535c6e239503aa659183c37022f179c2375d6713..7f976a90b7eae44d937f972f87849a14a059e3ae 100644 (file)
@@ -238,9 +238,11 @@ class xxxObject:
                 else:                   # simple parameter
                     self.params[tag] = xxxParam(node)
             else:
+                pass
                 # Remove all other nodes
-                element.removeChild(node)
-                node.unlink()
+#                element.removeChild(node)
+#                node.unlink()
+
         # Check that all required params are set
         for param in self.required:
             if not self.params.has_key(param):
@@ -416,8 +418,7 @@ class xxxBitmap(xxxObject):
 
 # Just like bitmap
 class xxxIcon(xxxObject):
-    allParams = ['icon']
-    required = ['icon']
+    allParams = []
 
 ################################################################################
 # Controls