diff options
Diffstat (limited to 'wizards')
4 files changed, 3 insertions, 5 deletions
diff --git a/wizards/com/sun/star/wizards/agenda/AgendaWizardDialogImpl.py b/wizards/com/sun/star/wizards/agenda/AgendaWizardDialogImpl.py index ede7aaad640b..372dad0551e7 100644 --- a/wizards/com/sun/star/wizards/agenda/AgendaWizardDialogImpl.py +++ b/wizards/com/sun/star/wizards/agenda/AgendaWizardDialogImpl.py @@ -70,7 +70,7 @@ class AgendaWizardDialogImpl(AgendaWizardDialog): self.initializePaths() # initialize the agenda template - self.terminateListener = TerminateListenerProcAdapter(self) + self.terminateListener = TerminateListenerProcAdapter(self.queryTermination) self.myAgendaDoc = AgendaDocument( self.xMSF, self.agenda, self.resources, self.templateConsts, self.terminateListener) diff --git a/wizards/com/sun/star/wizards/fax/FaxWizardDialogImpl.py b/wizards/com/sun/star/wizards/fax/FaxWizardDialogImpl.py index 31ac74470508..ef60a2e790ac 100644 --- a/wizards/com/sun/star/wizards/fax/FaxWizardDialogImpl.py +++ b/wizards/com/sun/star/wizards/fax/FaxWizardDialogImpl.py @@ -65,7 +65,7 @@ class FaxWizardDialogImpl(FaxWizardDialog): self.nMaxStep = 5 #instantiate The Document Frame for the Preview - self.terminateListener = TerminateListenerProcAdapter(self) + self.terminateListener = TerminateListenerProcAdapter(self.queryTermination) self.myFaxDoc = FaxDocument(xMSF, self.terminateListener) #create the dialog: diff --git a/wizards/com/sun/star/wizards/letter/LetterWizardDialogImpl.py b/wizards/com/sun/star/wizards/letter/LetterWizardDialogImpl.py index dff56474b24f..7c460f7dee4c 100644 --- a/wizards/com/sun/star/wizards/letter/LetterWizardDialogImpl.py +++ b/wizards/com/sun/star/wizards/letter/LetterWizardDialogImpl.py @@ -72,7 +72,7 @@ class LetterWizardDialogImpl(LetterWizardDialog): self.nMaxStep = 6 #instantiate The Document Frame for the Preview - self.terminateListener = TerminateListenerProcAdapter(self) + self.terminateListener = TerminateListenerProcAdapter(self.queryTermination) self.myLetterDoc = LetterDocument(xMSF, self.terminateListener) #create the dialog diff --git a/wizards/com/sun/star/wizards/ui/event/CommonListener.py b/wizards/com/sun/star/wizards/ui/event/CommonListener.py index ad15ac2d6c0f..94cafac672c2 100644 --- a/wizards/com/sun/star/wizards/ui/event/CommonListener.py +++ b/wizards/com/sun/star/wizards/ui/event/CommonListener.py @@ -65,8 +65,6 @@ class TerminateListenerProcAdapter( unohelper.Base, XTerminateListener ): self.oProcToCall = oProcToCall def queryTermination(self, TerminateEvent): - self.oProcToCall = getattr(self.oProcToCall,"queryTermination") - if callable( self.oProcToCall ): self.oProcToCall() |