diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-08-22 11:15:57 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-08-22 18:26:41 +0200 |
commit | d661cb17610af93b1607025284f23187c6d2fc06 (patch) | |
tree | 855cf44dd6d3cb6232b0aaa2087da770350d202a /vcl/source/control/wizardmachine.cxx | |
parent | 38001018fa06f721cf87edae923b54ce9a5ab5a7 (diff) |
weld chart CreationWizard
Change-Id: I7ee88c1e1b0eca5c2510a4bbba8b60c0d8a4e3e8
Reviewed-on: https://gerrit.libreoffice.org/77954
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl/source/control/wizardmachine.cxx')
-rw-r--r-- | vcl/source/control/wizardmachine.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/control/wizardmachine.cxx b/vcl/source/control/wizardmachine.cxx index 8a1a92a707f2..8f291ce40c38 100644 --- a/vcl/source/control/wizardmachine.cxx +++ b/vcl/source/control/wizardmachine.cxx @@ -685,7 +685,7 @@ namespace vcl } WizardMachine::WizardMachine(weld::Window* pParent, WizardButtonFlags nButtonFlags) - : AssistantController(pParent, "dbaccess/ui/databasewizard.ui", "DatabaseWizard") + : AssistantController(pParent, "vcl/ui/wizard.ui", "Wizard") , m_nCurState(0) , m_pFirstPage(nullptr) , m_xFinish(m_xAssistant->weld_widget_for_response(static_cast<int>(WizardButtonFlags::FINISH))) @@ -892,7 +892,7 @@ namespace vcl bool WizardMachine::onFinish() { - return Finish( RET_OK ); + return Finish(static_cast<int>(WizardButtonFlags::FINISH)); } IMPL_LINK_NOARG(WizardMachine, OnFinish, weld::Button&, void) |