From 682fdbf1312cf6ca70fe209bf4d7051dad8f5008 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 8 Oct 2019 10:30:36 +0200 Subject: loplugin:redundantpointerops check other pointer types as well as unique_ptr Change-Id: I54842bca161ee460fb96c46ca31b6f9c0a7dbbdf Reviewed-on: https://gerrit.libreoffice.org/80455 Tested-by: Jenkins Reviewed-by: Noel Grandin --- dbaccess/source/core/dataaccess/datasource.cxx | 2 +- dbaccess/source/ui/browser/genericcontroller.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'dbaccess') diff --git a/dbaccess/source/core/dataaccess/datasource.cxx b/dbaccess/source/core/dataaccess/datasource.cxx index edad6f160f7d..95aef3c1a236 100644 --- a/dbaccess/source/core/dataaccess/datasource.cxx +++ b/dbaccess/source/core/dataaccess/datasource.cxx @@ -496,7 +496,7 @@ ODatabaseSource::~ODatabaseSource() void ODatabaseSource::setName( const Reference< XDocumentDataSource >& _rxDocument, const OUString& _rNewName, DBContextAccess ) { - ODatabaseSource& rModelImpl = dynamic_cast< ODatabaseSource& >( *_rxDocument.get() ); + ODatabaseSource& rModelImpl = dynamic_cast< ODatabaseSource& >( *_rxDocument ); SolarMutexGuard g; if ( rModelImpl.m_pImpl.is() ) diff --git a/dbaccess/source/ui/browser/genericcontroller.cxx b/dbaccess/source/ui/browser/genericcontroller.cxx index 0989a2c03727..644c3417065e 100644 --- a/dbaccess/source/ui/browser/genericcontroller.cxx +++ b/dbaccess/source/ui/browser/genericcontroller.cxx @@ -448,7 +448,7 @@ void OGenericUnoController::ImplBroadcastFeatureState(const OUString& _rFeature, if ( aFeatureCommands.find( elem.aURL.Complete ) != aFeatureCommands.end() ) { aEvent.FeatureURL = elem.aURL; - lcl_notifyMultipleStates( *elem.xListener.get(), aEvent, aStates ); + lcl_notifyMultipleStates( *elem.xListener, aEvent, aStates ); } } } -- cgit