From e354b3fb803397fef2a6309fc0cf714a315bedee Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 19 Mar 2020 09:21:45 +0200 Subject: loplugin:redundantpointerops add some more smart pointer types Change-Id: Ia7f3441404d8d2e5de501e70da496b6fdc6c9a4a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90728 Tested-by: Jenkins Reviewed-by: Noel Grandin --- dbaccess/source/ui/inc/JoinTableView.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dbaccess') diff --git a/dbaccess/source/ui/inc/JoinTableView.hxx b/dbaccess/source/ui/inc/JoinTableView.hxx index c1b592074728..4134ebca023f 100644 --- a/dbaccess/source/ui/inc/JoinTableView.hxx +++ b/dbaccess/source/ui/inc/JoinTableView.hxx @@ -69,8 +69,8 @@ namespace dbaui void resetRange(const Point& _aSize); // own methods - ScrollBar& GetHScrollBar() { return *m_aHScrollBar.get(); } - ScrollBar& GetVScrollBar() { return *m_aVScrollBar.get(); } + ScrollBar& GetHScrollBar() { return *m_aHScrollBar; } + ScrollBar& GetVScrollBar() { return *m_aVScrollBar; } }; -- cgit