From feaf6d62da1685a34fbc8c201f31da681f04e2a7 Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 9 Jul 2011 02:23:29 +0000 Subject: Remove the tq in front of these incorrectly TQt4-converted methods/data members: tqrepaint[...] tqinvalidate[...] tqparent[...] tqmask[...] tqlayout[...] tqalignment[...] git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/tellico@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- src/translators/griffith2tellico.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/translators/griffith2tellico.py') diff --git a/src/translators/griffith2tellico.py b/src/translators/griffith2tellico.py index 31c947e..19bf583 100755 --- a/src/translators/griffith2tellico.py +++ b/src/translators/griffith2tellico.py @@ -149,7 +149,7 @@ class BasicTellicoDOM: else: field = key - tqparentNode = self.__doc.createElement(field + 's') + parentNode = self.__doc.createElement(field + 's') for value in values: if len(value) == 0: continue @@ -173,9 +173,9 @@ class BasicTellicoDOM: else: node.appendChild(self.__doc.createTextNode(value.strip())) - if node.hasChildNodes(): tqparentNode.appendChild(node) + if node.hasChildNodes(): parentNode.appendChild(node) - if tqparentNode.hasChildNodes(): entryNode.appendChild(tqparentNode) + if parentNode.hasChildNodes(): entryNode.appendChild(parentNode) self.__collection.appendChild(entryNode) -- cgit v1.2.1