diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-01-03 15:00:17 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-01-04 07:19:15 +0100 |
commit | 4c57847cb485396c6d914cf64d9f48f0845ffe34 (patch) | |
tree | 3826fcdffe46dffea4ac228347aba44ba8abc261 /svtools | |
parent | caf4d0525493b2c978f47e10d103cdf7f89363f7 (diff) |
drop OAddressBookSourceDialogUnoBase typedef
Change-Id: Iffc9f3bda2293f02ea071cea7ce3f222aa7f9cd2
Reviewed-on: https://gerrit.libreoffice.org/47344
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/uno/addrtempuno.cxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/svtools/source/uno/addrtempuno.cxx b/svtools/source/uno/addrtempuno.cxx index 88754128f81e..e9817e217fac 100644 --- a/svtools/source/uno/addrtempuno.cxx +++ b/svtools/source/uno/addrtempuno.cxx @@ -40,9 +40,8 @@ namespace { using namespace css::beans; using namespace css::sdbc; - typedef OGenericUnoDialog OAddressBookSourceDialogUnoBase; class OAddressBookSourceDialogUno - :public OAddressBookSourceDialogUnoBase + :public OGenericUnoDialog ,public ::comphelper::OPropertyArrayUsageHelper< OAddressBookSourceDialogUno > { private: @@ -130,7 +129,7 @@ namespace { void OAddressBookSourceDialogUno::executedDialog(sal_Int16 _nExecutionResult) { - OAddressBookSourceDialogUnoBase::executedDialog(_nExecutionResult); + OGenericUnoDialog::executedDialog(_nExecutionResult); if ( _nExecutionResult ) if ( m_pDialog ) @@ -196,7 +195,7 @@ namespace { } } - OAddressBookSourceDialogUnoBase::implInitialize( _rValue ); + OGenericUnoDialog::implInitialize( _rValue ); } |