diff options
author | Noel Grandin <noel@peralex.com> | 2015-10-30 11:29:18 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-10-30 13:52:29 +0200 |
commit | e10570565f02959c8b713d1e17f5810424ddb63d (patch) | |
tree | 04822382005d039c2981ab8093776284b7a80770 /dbaccess/source/ui/dlg/DbAdminImpl.cxx | |
parent | 76cfcea67284c246e04efce836327ec0dd2bfb66 (diff) |
use uno::Reference::set method instead of assignment
Change-Id: I3d45914e349a4268204af84b95b53ccce7b9d544
Diffstat (limited to 'dbaccess/source/ui/dlg/DbAdminImpl.cxx')
-rw-r--r-- | dbaccess/source/ui/dlg/DbAdminImpl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/ui/dlg/DbAdminImpl.cxx b/dbaccess/source/ui/dlg/DbAdminImpl.cxx index c1cdc7f14cdd..29b056f9da7f 100644 --- a/dbaccess/source/ui/dlg/DbAdminImpl.cxx +++ b/dbaccess/source/ui/dlg/DbAdminImpl.cxx @@ -245,7 +245,7 @@ bool ODbDataSourceAdministrationHelper::getCurrentSettings(Sequence< PropertyVal if ( !xHandler.is() ) { // instantiate the default SDB interaction handler - xHandler = Reference< XInteractionHandler >( task::InteractionHandler::createWithParent(m_xContext, 0), UNO_QUERY ); + xHandler.set( task::InteractionHandler::createWithParent(m_xContext, 0), UNO_QUERY ); } OUString sName = pName ? pName->GetValue() : OUString(); |