diff options
author | Xisco Fauli <anistenis@gmail.com> | 2012-10-21 22:11:08 +0200 |
---|---|---|
committer | xisco <xisco@xisco-laptop.(none)> | 2012-10-23 01:13:19 +0200 |
commit | 97bc32eb68c33a54764380fbd91141028b66f6e0 (patch) | |
tree | 8500b5979746f79436075c636c813f52b979b439 /wizards/com | |
parent | 62423956c33dec9dab66971eafee6df4e7212dd9 (diff) |
pyletter: Don't need to lock controllers here
Change-Id: Ic3c313c8b58005fdd7ac09f7f74bae11f46cde07
Diffstat (limited to 'wizards/com')
-rw-r--r-- | wizards/com/sun/star/wizards/letter/LetterWizardDialogImpl.py | 4 |
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) |