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 --- include/dbaccess/dataview.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/dbaccess') diff --git a/include/dbaccess/dataview.hxx b/include/dbaccess/dataview.hxx index a8da6376da91..738ccc352da1 100644 --- a/include/dbaccess/dataview.hxx +++ b/include/dbaccess/dataview.hxx @@ -72,7 +72,7 @@ namespace dbaui virtual void StateChanged( StateChangedType nStateChange ) override; virtual void DataChanged( const DataChangedEvent& rDCEvt ) override; - IController& getCommandController() const { return *m_xController.get(); } + IController& getCommandController() const { return *m_xController; } const css::uno::Reference< css::uno::XComponentContext >& getORB() const { return m_xContext;} -- cgit