summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/dlg/dbwizsetup.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-04-24 15:29:31 +0200
committerNoel Grandin <noel@peralex.com>2015-05-05 09:30:39 +0200
commitadd1351e5974a74e76f9095af1bc9c80ab543cf2 (patch)
tree043aea9eed1fd011ae75d9b6b528c1f9a419b3a6 /dbaccess/source/ui/dlg/dbwizsetup.cxx
parentf304a7a14a4af4d3f46eab18d5494194028e61ef (diff)
loplugin:staticmethods
Change-Id: Ie6867e04156f40cacee275d5bbf3d63ac4965b30
Diffstat (limited to 'dbaccess/source/ui/dlg/dbwizsetup.cxx')
-rw-r--r--dbaccess/source/ui/dlg/dbwizsetup.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/ui/dlg/dbwizsetup.cxx b/dbaccess/source/ui/dlg/dbwizsetup.cxx
index 34846788d85c..6edc3ce6a22e 100644
--- a/dbaccess/source/ui/dlg/dbwizsetup.cxx
+++ b/dbaccess/source/ui/dlg/dbwizsetup.cxx
@@ -703,7 +703,7 @@ bool ODbTypeWizDialogSetup::SaveDatabaseDocument()
aArgs.put( "InteractionHandler", xHandler );
aArgs.put( "MacroExecutionMode", MacroExecMode::USE_CONFIG );
- OUString sPath = m_pImpl->getDocumentUrl( *m_pOutSet );
+ OUString sPath = ODbDataSourceAdministrationHelper::getDocumentUrl( *m_pOutSet );
xStore->storeAsURL( sPath, aArgs.getPropertyValues() );
if ( !m_pFinalPage || m_pFinalPage->IsDatabaseDocumentToBeRegistered() )
@@ -761,7 +761,7 @@ bool ODbTypeWizDialogSetup::SaveDatabaseDocument()
{
OUString sUrl;
OUString eType = m_pGeneralPage->GetSelectedType();
- if ( m_pCollection->isEmbeddedDatabase(eType) )
+ if ( dbaccess::ODsnTypeCollection::isEmbeddedDatabase(eType) )
{
sUrl = eType;
Reference< XPropertySet > xDatasource = m_pImpl->getCurrentDataSource();