diff options
-rw-r--r-- | wizards/com/sun/star/wizards/text/TextFieldHandler.py | 20 |
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() |