summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2022-10-08 07:53:39 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2022-10-08 16:44:02 +0200
commit2fccedec09c98d4a1c23ae831ce43db0dd936052 (patch)
tree62491e295f6bb57fdbbc7da56c9cf19fa4d195a8
parent3d77fe0af515830001448fde0d394ef20a89002b (diff)
use more SwPosition::GetNode
part of the process of hiding the internals of SwPosition Change-Id: Ic618f4fea85dccfa31abba3efb3c0afd1994a90f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141096 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
-rw-r--r--sw/source/core/doc/docedt.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/doc/docedt.cxx b/sw/source/core/doc/docedt.cxx
index daf3a00d83dd..eb9b5a85a2b0 100644
--- a/sw/source/core/doc/docedt.cxx
+++ b/sw/source/core/doc/docedt.cxx
@@ -78,7 +78,7 @@ void RestFlyInRange( SaveFlyArr & rArr, const SwPosition& rStartPos,
}
else
{
- aPos.Assign(rStartPos.nNode);
+ aPos.Assign(rStartPos.GetNode());
assert(aPos.GetNode().GetContentNode());
}
}