diff options
author | Xisco Fauli <anistenis@gmail.com> | 2012-10-21 21:55:00 +0200 |
---|---|---|
committer | xisco <xisco@xisco-laptop.(none)> | 2012-10-23 01:13:18 +0200 |
commit | ce6995cee86988a8a3c43b845845d5b2723ef14a (patch) | |
tree | 3b14996d385c3ff17e8fe5cd666b4800c21a7adc /wizards | |
parent | 5a0b00d9e976e5d7ab9edbb9edaa148ca1a6f691 (diff) |
pyletter: Don't need to lock controllers here
Change-Id: I8677489a99e4f8efabe10b47b8f86045816a118b
Diffstat (limited to 'wizards')
-rw-r--r-- | wizards/com/sun/star/wizards/letter/LetterWizardDialogImpl.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/wizards/com/sun/star/wizards/letter/LetterWizardDialogImpl.py b/wizards/com/sun/star/wizards/letter/LetterWizardDialogImpl.py index d87ec95a724e..8e4d4ea76b9d 100644 --- a/wizards/com/sun/star/wizards/letter/LetterWizardDialogImpl.py +++ b/wizards/com/sun/star/wizards/letter/LetterWizardDialogImpl.py @@ -384,12 +384,10 @@ class LetterWizardDialogImpl(LetterWizardDialog): TextDocument.xTextDocument = \ self.myLetterDoc.loadAsPreview( self.BusinessFiles.values()[selectedItemPos], False) - self.myLetterDoc.xTextDocument.lockControllers() self.initializeElements() self.chkBusinessPaperItemChanged() self.setElements(False) - self.myLetterDoc.xTextDocument.unlockControllers() - + def lstPrivOfficialStyleItemChanged(self): selectedItemPos = self.lstPrivOfficialStyle.SelectedItemPos if LetterWizardDialogImpl.lstPrivOfficialStylePos != selectedItemPos: |