summaryrefslogtreecommitdiff
path: root/svtools/source/uno
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-03-05 14:17:14 +0200
committerNoel Grandin <noel@peralex.com>2013-03-07 08:23:41 +0200
commit30caf94d816dfcf9a5bc8cb5198c977d7021c369 (patch)
tree11e0d97b0dbe3d1ee2aeebf8107766c1dd6799fc /svtools/source/uno
parentc98a1fa04884c7fa34dfeb5e2eae706e57c09123 (diff)
fdo#46808, Convert ui::dialogs::AddressBookSourceDialog to new style
The service already existed, it just needed an IDL file. Change-Id: I6b9a5a5fd02985bfdd29bb42f032265d0b5498c7
Diffstat (limited to 'svtools/source/uno')
-rw-r--r--svtools/source/uno/addrtempuno.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/uno/addrtempuno.cxx b/svtools/source/uno/addrtempuno.cxx
index da4fa51dd5bd..ca255facf1c1 100644
--- a/svtools/source/uno/addrtempuno.cxx
+++ b/svtools/source/uno/addrtempuno.cxx
@@ -252,9 +252,9 @@ namespace svt
Dialog* OAddressBookSourceDialogUno::createDialog(Window* _pParent)
{
if ( m_xDataSource.is() && !m_sTable.isEmpty() )
- return new AddressBookSourceDialog(_pParent, m_aContext.getLegacyServiceFactory(), m_xDataSource, m_sDataSourceName, m_sTable, m_aAliases );
+ return new AddressBookSourceDialog(_pParent, m_aContext.getUNOContext(), m_xDataSource, m_sDataSourceName, m_sTable, m_aAliases );
else
- return new AddressBookSourceDialog( _pParent, m_aContext.getLegacyServiceFactory() );
+ return new AddressBookSourceDialog( _pParent, m_aContext.getUNOContext() );
}
// .......................................................................