diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-08-01 10:01:59 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-08-02 13:57:14 +0200 |
commit | c1c195afab72794a1f0d5ed63c2e3fe6f65bfa84 (patch) | |
tree | e64b047be56d1079ba1976456c5df70bb957b157 /sw/source/uibase/wrtsh/delete.cxx | |
parent | d11f2e00593300dc68bcd11e23ad05116465adba (diff) |
introduce SwPosition::GetNode
as part of the process of hiding the internals of SwPosition
largely done by doing:
git grep -lF 'nNode.GetNode' | xargs perl -pi -e
's/nNode\.GetNode/GetNode/g'
Change-Id: Id1937df1bd5a54677c2c1bbfb2d693a4e22a7b98
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137671
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/source/uibase/wrtsh/delete.cxx')
-rw-r--r-- | sw/source/uibase/wrtsh/delete.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/uibase/wrtsh/delete.cxx b/sw/source/uibase/wrtsh/delete.cxx index 7c560fad3807..4c0e853df434 100644 --- a/sw/source/uibase/wrtsh/delete.cxx +++ b/sw/source/uibase/wrtsh/delete.cxx @@ -492,7 +492,7 @@ bool SwWrtShell::DelRight(bool const isReplaceHeuristic) if (pAnchor) { - SwTextNode* pTextNode = pAnchor->nNode.GetNode().GetTextNode(); + SwTextNode* pTextNode = pAnchor->GetNode().GetTextNode(); if (pTextNode) { const SwTextField* pField( |