sw/source/core/unocore/unotbl.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit 92096f7f645f58889e86573b620b1e23d74758cb Author: Noel Grandin <noel.gran...@collabora.co.uk> AuthorDate: Sun Sep 17 19:27:16 2023 +0200 Commit: Noel Grandin <noel.gran...@collabora.co.uk> CommitDate: Mon Sep 18 08:57:48 2023 +0200 use more concrete UNO types in sw Change-Id: I4209069f0d930af1f3aed1a00c5c6a775bdc5dbd Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157002 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk> diff --git a/sw/source/core/unocore/unotbl.cxx b/sw/source/core/unocore/unotbl.cxx index ef1c5a360c6a..74aa98e6882f 100644 --- a/sw/source/core/unocore/unotbl.cxx +++ b/sw/source/core/unocore/unotbl.cxx @@ -2158,7 +2158,7 @@ uno::Reference<table::XCell> SwXTextTable::getCellByPosition(sal_Int32 nColumn, namespace { -uno::Reference<table::XCellRange> GetRangeByName( +rtl::Reference<SwXCellRange> GetRangeByName( SwFrameFormat* pFormat, SwTable const * pTable, const OUString& rTLName, const OUString& rBRName, SwRangeDescriptor const & rDesc) @@ -3207,7 +3207,7 @@ SwXCellRange::getCellRangeByPosition( sal_Int32 nLeft, sal_Int32 nTop, sal_Int32 nRight, sal_Int32 nBottom) { SolarMutexGuard aGuard; - uno::Reference< table::XCellRange > aRet; + rtl::Reference< SwXCellRange > aRet; SwFrameFormat *const pFormat = m_pImpl->GetFrameFormat(); if (pFormat && m_pImpl->GetColumnCount() > nRight && m_pImpl->GetRowCount() > nBottom &&