diff options
author | Xisco Fauli <anistenis@gmail.com> | 2012-11-15 20:52:39 +0100 |
---|---|---|
committer | Xisco Fauli <anistenis@gmail.com> | 2012-11-21 01:07:59 +0100 |
commit | 12634c14249fc3e1d09cb6688c9709818f5522de (patch) | |
tree | 2af9327515a8c9f616548e8f577b1553d846692b /wizards/com | |
parent | 34fbbe1af85c8120a2e76b37497d6282e87c1af6 (diff) |
pyfax: fix a mistake
Change-Id: I2d046f3227edabe35f82fb2c42633a0d553dad81
Diffstat (limited to 'wizards/com')
-rw-r--r-- | wizards/com/sun/star/wizards/text/TextFieldHandler.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wizards/com/sun/star/wizards/text/TextFieldHandler.py b/wizards/com/sun/star/wizards/text/TextFieldHandler.py index 5bb96a181ce6..67324835b689 100644 --- a/wizards/com/sun/star/wizards/text/TextFieldHandler.py +++ b/wizards/com/sun/star/wizards/text/TextFieldHandler.py @@ -34,8 +34,8 @@ class TextFieldHandler(object): def __init__(self, xMSF, xTextDocument): self.xMSFDoc = xMSF self.xTextFieldsSupplier = xTextDocument - self.arrayTextFields = {} - self.dictTextFields = [] + self.arrayTextFields = [] + self.dictTextFields = {} if TextFieldHandler.xTextFieldsSupplierAux is not \ self.xTextFieldsSupplier: self.__getTextFields() |