diff options
author | Noel <noel.grandin@collabora.co.uk> | 2021-02-16 08:54:42 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-02-16 11:48:31 +0100 |
commit | fb6519ed62cf1fb7071ca2d9d22bfc37c093a751 (patch) | |
tree | 588f790798a993483462d4b5b733b957ec480bc3 /accessibility/source/extended/AccessibleBrowseBox.cxx | |
parent | 64701c68b5878209574663fd1b0ed333cd181511 (diff) |
loplugin:referencecasting in accessibility
Change-Id: If66b3c1829b02298b7c9c31172d2a66ad11dce30
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110967
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'accessibility/source/extended/AccessibleBrowseBox.cxx')
-rw-r--r-- | accessibility/source/extended/AccessibleBrowseBox.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/accessibility/source/extended/AccessibleBrowseBox.cxx b/accessibility/source/extended/AccessibleBrowseBox.cxx index 390c04a87f18..28698162ed48 100644 --- a/accessibility/source/extended/AccessibleBrowseBox.cxx +++ b/accessibility/source/extended/AccessibleBrowseBox.cxx @@ -194,7 +194,7 @@ css::uno::Reference< css::accessibility::XAccessible > AccessibleBrowseBox::impl mxTable = createAccessibleTable(); } - return mxTable.get(); + return mxTable; } css::uno::Reference< css::accessibility::XAccessible > @@ -303,7 +303,7 @@ css::uno::Reference< css::accessibility::XAccessibleContext > SAL_CALL Accessibl if ( !m_xContext.is() ) m_xContext = new AccessibleBrowseBox( m_xParent, this, m_rBrowseBox ); - return m_xContext.get(); + return m_xContext; } |