summaryrefslogtreecommitdiff
path: root/wizards
diff options
context:
space:
mode:
authorXisco Fauli <anistenis@gmail.com>2012-12-18 20:06:51 +0100
committerXisco Fauli <anistenis@gmail.com>2012-12-18 20:10:06 +0100
commitd83499a864fd39b1e05706298b95594caae33e0c (patch)
tree15635c4e1c8268ee80fde90815621a1d6f955be1 /wizards
parent1d83c7ac82ae83b88ff800853bb8d06dc29d22b1 (diff)
pywizards: Delete all empty TextFields after finishing
Change-Id: Ic1c0c6e6f6174d4337abf06f32d9fd8072c2511d
Diffstat (limited to 'wizards')
-rw-r--r--wizards/com/sun/star/wizards/text/TextFieldHandler.py20
1 files changed, 9 insertions, 11 deletions
diff --git a/wizards/com/sun/star/wizards/text/TextFieldHandler.py b/wizards/com/sun/star/wizards/text/TextFieldHandler.py
index 379abb1ff8f2..0037f2b7782c 100644
--- a/wizards/com/sun/star/wizards/text/TextFieldHandler.py
+++ b/wizards/com/sun/star/wizards/text/TextFieldHandler.py
@@ -154,14 +154,12 @@ class TextFieldHandler(object):
def removeUserFieldByContent(self):
#Remove userfield when its text is empty
- try:
- xDependentTextFields = TextFieldHandler.dictTextFields.values()
- for i in xDependentTextFields:
- try:
- if not i.TextFieldMaster.Content:
- i.dispose()
- except UnknownPropertyException:
- pass
-
- except Exception:
- traceback.print_exc()
+ xDependentTextFields = TextFieldHandler.arrayTextFields
+ for i in xDependentTextFields:
+ try:
+ if not i.TextFieldMaster.Content:
+ i.dispose()
+ except Exception:
+ #TextField doesn't even have the attribute Content,
+ #so it's empty
+ i.dispose()