From 8347fa7f8ed75a341e22733e53e7d64e7a930db2 Mon Sep 17 00:00:00 2001 From: Xisco Fauli Date: Tue, 18 Dec 2012 20:06:51 +0100 Subject: pywizards: Delete all empty TextFields after finishing Change-Id: Ic1c0c6e6f6174d4337abf06f32d9fd8072c2511d --- .../com/sun/star/wizards/text/TextFieldHandler.py | 20 +++++++++----------- 1 file 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() -- cgit