summaryrefslogtreecommitdiff
path: root/sw/source/core/unocore/unoredline.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2022-10-30 12:36:12 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2022-10-31 12:29:49 +0100
commit0f57a02c5aabbc09cfd6c912d211d21a748abc88 (patch)
treeee00de3806b353046c63c47b5ae986df00c30e46 /sw/source/core/unocore/unoredline.cxx
parent6baffb816eb2b5b4223059c3bfadb8d3d8cac7d0 (diff)
tdf#126788 return concrete type from CreateXTextRange
to make it easier to optimise call sites unnecessarily creates tons of these Change-Id: I39bced82ae03fe33dbf0592f384332ab49f914fc Reviewed-on: https://gerrit.libreoffice.org/c/core/+/142036 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/source/core/unocore/unoredline.cxx')
-rw-r--r--sw/source/core/unocore/unoredline.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/core/unocore/unoredline.cxx b/sw/source/core/unocore/unoredline.cxx
index 6772bb1e1305..8675743da681 100644
--- a/sw/source/core/unocore/unoredline.cxx
+++ b/sw/source/core/unocore/unoredline.cxx
@@ -435,9 +435,9 @@ uno::Any SwXRedline::getPropertyValue( const OUString& rPropertyName )
pPoint = m_pRedline->GetPoint();
else
pPoint = m_pRedline->GetMark();
- const uno::Reference<text::XTextRange> xRange =
+ const rtl::Reference<SwXTextRange> xRange =
SwXTextRange::CreateXTextRange(*m_pDoc, *pPoint, nullptr);
- xRet = xRange.get();
+ xRet = uno::Reference<text::XTextRange>(xRange);
}
break;
default: