summaryrefslogtreecommitdiff
path: root/scratch/layout-src2xml
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@novell.com>2007-08-17 12:55:32 +0000
committerMichael Meeks <michael.meeks@novell.com>2007-08-17 12:55:32 +0000
commitb3bb9044d23c9444c1abfe95e5e665a65dc966f6 (patch)
tree38cc15945511e5dfe0a7e51402a64017ebb9f806 /scratch/layout-src2xml
parenta532d2613840cbcfc4af198d88d15347f3459d11 (diff)
Fix property introspection for toolkit/
* patches/src680/layout-toolkit.diff, * patches/src680/apply: fix property introspection for toolkit/
Diffstat (limited to 'scratch/layout-src2xml')
-rw-r--r--scratch/layout-src2xml/source/globals.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/scratch/layout-src2xml/source/globals.py b/scratch/layout-src2xml/source/globals.py
index 7bf6273bb..e9b150ccd 100644
--- a/scratch/layout-src2xml/source/globals.py
+++ b/scratch/layout-src2xml/source/globals.py
@@ -76,6 +76,7 @@ class Element(Node):
Node.__init__(self)
self.name = name
self.parent = None
+# print "name: " + self.name - stats ...
# The following attributes are copied when 'clone'ed.
self.rid = rid
@@ -113,6 +114,7 @@ class Element(Node):
if type(value) == type(0):
value = "%d"%value
self.attrs[name] = removeQuote(value)
+# print "attr: " + self.name + "." + name - stats ...
return
def clone (self, elem):