summaryrefslogtreecommitdiff
path: root/wizards/com/sun/star
diff options
context:
space:
mode:
authorXisco Fauli <anistenis@gmail.com>2012-10-21 22:11:08 +0200
committerxisco <xisco@xisco-laptop.(none)>2012-10-23 01:13:19 +0200
commit97bc32eb68c33a54764380fbd91141028b66f6e0 (patch)
tree8500b5979746f79436075c636c813f52b979b439 /wizards/com/sun/star
parent62423956c33dec9dab66971eafee6df4e7212dd9 (diff)
pyletter: Don't need to lock controllers here
Change-Id: Ic3c313c8b58005fdd7ac09f7f74bae11f46cde07
Diffstat (limited to 'wizards/com/sun/star')
-rw-r--r--wizards/com/sun/star/wizards/letter/LetterWizardDialogImpl.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/wizards/com/sun/star/wizards/letter/LetterWizardDialogImpl.py b/wizards/com/sun/star/wizards/letter/LetterWizardDialogImpl.py
index 8e4d4ea76b9d..d8df8b6ba406 100644
--- a/wizards/com/sun/star/wizards/letter/LetterWizardDialogImpl.py
+++ b/wizards/com/sun/star/wizards/letter/LetterWizardDialogImpl.py
@@ -395,11 +395,9 @@ class LetterWizardDialogImpl(LetterWizardDialog):
TextDocument.xTextDocument = \
self.myLetterDoc.loadAsPreview(
self.OfficialFiles.values()[selectedItemPos], False)
- self.myLetterDoc.xTextDocument.lockControllers()
self.initializeElements()
self.setPossibleSenderData(True)
self.setElements(False)
- self.myLetterDoc.xTextDocument.unlockControllers()
def lstPrivateStyleItemChanged(self):
selectedItemPos = self.lstPrivateStyle.SelectedItemPos
@@ -408,10 +406,8 @@ class LetterWizardDialogImpl(LetterWizardDialog):
TextDocument.xTextDocument = \
self.myLetterDoc.loadAsPreview(
self.PrivateFiles.values()[selectedItemPos], False)
- self.myLetterDoc.xTextDocument.lockControllers()
self.initializeElements()
self.setElements(True)
- self.myLetterDoc.xTextDocument.unlockControllers()
def numLogoHeightTextChanged(self):
self.BusCompanyLogo.iHeight = int(self.numLogoHeight.Value * 1000)