sw/source/filter/ascii/wrtasc.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit eff240546328f15f4f88c782637913d5eef18c74 Author: Xisco Fauli <xiscofa...@libreoffice.org> AuthorDate: Wed Jul 31 13:40:04 2024 +0200 Commit: Xisco Fauli <xiscofa...@libreoffice.org> CommitDate: Wed Jul 31 18:12:09 2024 +0200 use const found by Caolán in https://gerrit.libreoffice.org/c/core/+/171036/comment/12f98f00_83e60540/ Change-Id: I1d8cd36c0ebd883c0d2e438addf510bbf1ad5262 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/171316 Tested-by: Jenkins Reviewed-by: Xisco Fauli <xiscofa...@libreoffice.org> diff --git a/sw/source/filter/ascii/wrtasc.cxx b/sw/source/filter/ascii/wrtasc.cxx index 6cec01b1319e..6b7ada9bd87e 100644 --- a/sw/source/filter/ascii/wrtasc.cxx +++ b/sw/source/filter/ascii/wrtasc.cxx @@ -243,7 +243,7 @@ void SwASCWriter::WriteTable(SwTableNode* pTableNd, SwTextNode* pNd) Out( aASCNodeFnTab, *pNd, *this ); Point aPrevBoxPoint; - SwTableBox* pTableBox = pNd->GetTableBox(); + const SwTableBox* pTableBox = pNd->GetTableBox(); if (pTableBox) aPrevBoxPoint = pTableBox->GetCoordinates(); m_pCurrentPam->Move(fnMoveForward, GoInNode);