summaryrefslogtreecommitdiff
path: root/sw/source/core/crsr/crsrsh.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/crsr/crsrsh.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/crsr/crsrsh.cxx')
-rw-r--r--sw/source/core/crsr/crsrsh.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/crsr/crsrsh.cxx b/sw/source/core/crsr/crsrsh.cxx
index 901e3b149644..0267990c8741 100644
--- a/sw/source/core/crsr/crsrsh.cxx
+++ b/sw/source/core/crsr/crsrsh.cxx
@@ -3744,7 +3744,7 @@ static void lcl_FillTextRange( uno::Reference<text::XTextRange>& rRange,
// create SwPosition for nEndIndex
SwPosition aEndPos( rNode, nBegin + nLen );
- const uno::Reference<text::XTextRange> xRange =
+ const rtl::Reference<SwXTextRange> xRange =
SwXTextRange::CreateXTextRange(rNode.GetDoc(), aStartPos, &aEndPos);
rRange = xRange;