diff options
-rw-r--r-- | wizards/com/sun/star/wizards/fax/CallWizard.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wizards/com/sun/star/wizards/fax/CallWizard.py b/wizards/com/sun/star/wizards/fax/CallWizard.py index 9c0205aa578b..b779885622a7 100644 --- a/wizards/com/sun/star/wizards/fax/CallWizard.py +++ b/wizards/com/sun/star/wizards/fax/CallWizard.py @@ -18,7 +18,7 @@ import unohelper import traceback -from ..agenda.AgendaWizardDialogImpl import AgendaWizardDialogImpl +from .FaxWizardDialogImpl import FaxWizardDialogImpl from com.sun.star.task import XJobExecutor @@ -31,7 +31,7 @@ class CallWizard(unohelper.Base, XJobExecutor): def trigger(self, args): try: - fw = AgendaWizardDialogImpl(self.ctx.ServiceManager) + fw = FaxWizardDialogImpl(self.ctx.ServiceManager) fw.startWizard(self.ctx.ServiceManager) except Exception as e: print ("Wizard failure exception " + str(type(e)) + |