diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-09-12 16:17:30 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-09-14 06:51:30 +0200 |
commit | df809481d4fcee0ac51cf056161ee4953ade44bd (patch) | |
tree | d4f948b1a675338598dd11dea2b498c470bc806a /dbaccess | |
parent | 6df7568e46b7f307ad6ae94730809fe63a6981a6 (diff) |
inherit from one class
Change-Id: Ia3cb14429a42e445c14cecc20728d59d985f4b5d
Reviewed-on: https://gerrit.libreoffice.org/78837
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/dlg/dbwiz.cxx | 4 | ||||
-rw-r--r-- | dbaccess/source/ui/dlg/dbwizsetup.cxx | 12 | ||||
-rw-r--r-- | dbaccess/source/ui/inc/WCopyTable.hxx | 2 | ||||
-rw-r--r-- | dbaccess/source/ui/inc/dbwiz.hxx | 3 | ||||
-rw-r--r-- | dbaccess/source/ui/inc/dbwizsetup.hxx | 4 |
5 files changed, 17 insertions, 8 deletions
diff --git a/dbaccess/source/ui/dlg/dbwiz.cxx b/dbaccess/source/ui/dlg/dbwiz.cxx index 9e6fef02f0e6..af03675abd71 100644 --- a/dbaccess/source/ui/dlg/dbwiz.cxx +++ b/dbaccess/source/ui/dlg/dbwiz.cxx @@ -105,9 +105,9 @@ IMPL_LINK(ODbTypeWizDialog, OnTypeSelected, OGeneralPage&, _rTabPage, void) enableButtons(WizardButtonFlags::FINISH,!bURLRequired); } -vcl::WizardTypes::WizardState ODbTypeWizDialog::determineNextState( WizardState _nCurrentState ) const +WizardState ODbTypeWizDialog::determineNextState( WizardState _nCurrentState ) const { - WizardTypes::WizardState nNextState = WZS_INVALID_STATE; + WizardState nNextState = WZS_INVALID_STATE; switch(_nCurrentState) { case START_PAGE: diff --git a/dbaccess/source/ui/dlg/dbwizsetup.cxx b/dbaccess/source/ui/dlg/dbwizsetup.cxx index cc901bd84817..e37edfa475fe 100644 --- a/dbaccess/source/ui/dlg/dbwizsetup.cxx +++ b/dbaccess/source/ui/dlg/dbwizsetup.cxx @@ -99,6 +99,8 @@ using namespace ::com::sun::star::document; using namespace ::comphelper; using namespace ::cppu; +using vcl::RoadmapWizardTypes::WizardPath; + // ODbTypeWizDialogSetup ODbTypeWizDialogSetup::ODbTypeWizDialogSetup(weld::Window* _pParent ,SfxItemSet const * _pItems @@ -152,7 +154,7 @@ ODbTypeWizDialogSetup::ODbTypeWizDialogSetup(weld::Window* _pParent for(PathId i = 1;aIter != aEnd;++aIter,++i) { const OUString& sURLPrefix = aIter.getURLPrefix(); - vcl::RoadmapWizardTypes::WizardPath aPath; + WizardPath aPath; aPath.push_back(PAGE_DBSETUPWIZARD_INTRO); m_pCollection->fillPageIds(sURLPrefix,aPath); aPath.push_back(PAGE_DBSETUPWIZARD_AUTHENTIFICATION); @@ -161,7 +163,7 @@ ODbTypeWizDialogSetup::ODbTypeWizDialogSetup(weld::Window* _pParent declareAuthDepPath(sURLPrefix,i,aPath); } - vcl::RoadmapWizardTypes::WizardPath aPath; + WizardPath aPath; aPath.push_back(PAGE_DBSETUPWIZARD_INTRO); declarePath( static_cast<PathId>(m_pCollection->size()+1), aPath); @@ -174,7 +176,7 @@ ODbTypeWizDialogSetup::ODbTypeWizDialogSetup(weld::Window* _pParent m_xAssistant->set_current_page(0); } -void ODbTypeWizDialogSetup::declareAuthDepPath( const OUString& _sURL, PathId _nPathId, const vcl::RoadmapWizardTypes::WizardPath& _rPaths) +void ODbTypeWizDialogSetup::declareAuthDepPath( const OUString& _sURL, PathId _nPathId, const WizardPath& _rPaths) { bool bHasAuthentication = DataSourceMetaData::getAuthentication( _sURL ) != AuthNone; @@ -191,7 +193,7 @@ void ODbTypeWizDialogSetup::declareAuthDepPath( const OUString& _sURL, PathId _n ::vcl::RoadmapWizardMachine::declarePath( _nPathId, aPath ); } -OUString ODbTypeWizDialogSetup::getStateDisplayName( WizardState _nState ) const +OUString ODbTypeWizDialogSetup::getStateDisplayName(WizardState _nState) const { OUString sRoadmapItem; switch( _nState ) @@ -596,7 +598,7 @@ IMPL_LINK_NOARG(ODbTypeWizDialogSetup, OnRecentDocumentSelected, OGeneralPageWiz IMPL_LINK_NOARG(ODbTypeWizDialogSetup, OnSingleDocumentChosen, OGeneralPageWizard&, void) { - if ( prepareLeaveCurrentState( eFinish ) ) + if (prepareLeaveCurrentState(WizardTypes::eFinish)) onFinish(); } diff --git a/dbaccess/source/ui/inc/WCopyTable.hxx b/dbaccess/source/ui/inc/WCopyTable.hxx index 8d1cd4355596..53fb201a4b0b 100644 --- a/dbaccess/source/ui/inc/WCopyTable.hxx +++ b/dbaccess/source/ui/inc/WCopyTable.hxx @@ -286,7 +286,7 @@ namespace dbaui // checks if the type is supported in the destination database bool supportsType(sal_Int32 _nDataType,sal_Int32& _rNewDataType); - virtual VclPtr<TabPage> createPage(WizardState /*nState*/) override + virtual VclPtr<TabPage> createPage(vcl::WizardTypes::WizardState /*nState*/) override { assert(false); return nullptr; diff --git a/dbaccess/source/ui/inc/dbwiz.hxx b/dbaccess/source/ui/inc/dbwiz.hxx index 468efc995279..8773477cd03f 100644 --- a/dbaccess/source/ui/inc/dbwiz.hxx +++ b/dbaccess/source/ui/inc/dbwiz.hxx @@ -38,6 +38,9 @@ namespace com { namespace sun { namespace star { } }}} +using vcl::WizardTypes::WizardState; +using vcl::WizardTypes::CommitPageReason; + namespace dbaccess { class ODsnTypeCollection; diff --git a/dbaccess/source/ui/inc/dbwizsetup.hxx b/dbaccess/source/ui/inc/dbwizsetup.hxx index 16969b467ee3..4747397fbf24 100644 --- a/dbaccess/source/ui/inc/dbwizsetup.hxx +++ b/dbaccess/source/ui/inc/dbwizsetup.hxx @@ -40,6 +40,10 @@ namespace com { namespace sun { namespace star { } }}} +using vcl::WizardTypes::WizardState; +using vcl::WizardTypes::CommitPageReason; +using vcl::RoadmapWizardTypes::PathId; + namespace dbaui { |