sw/source/filter/ww8/wrtw8nds.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
New commits: commit 15c77936f66cb744cad27a2fe0d71de4772e303c Author: Justin Luth <[email protected]> AuthorDate: Tue Jan 27 14:28:01 2026 -0500 Commit: Miklos Vajna <[email protected]> CommitDate: Thu Feb 5 09:44:36 2026 +0100 NFC tdf#170516 cleanup: remove unused changes to nStateOfFlyFrame No Functional Change intended These changes to nStateOfFlyFrame are no longer used. Perhaps they ought to also have AttrOutput().SetStateOfFlyFrame( nStateOfFlyFrame ); however they never did - probably because they are // insert final graphic anchors if any before CR and so nobody cares anymore. Change-Id: I05299864118d208a391fa81926e8349e02db3cfc Reviewed-on: https://gerrit.libreoffice.org/c/core/+/198637 Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-by: Miklos Vajna <[email protected]> diff --git a/sw/source/filter/ww8/wrtw8nds.cxx b/sw/source/filter/ww8/wrtw8nds.cxx index 5a90c41f1209..bf3387ad63b0 100644 --- a/sw/source/filter/ww8/wrtw8nds.cxx +++ b/sw/source/filter/ww8/wrtw8nds.cxx @@ -2530,7 +2530,7 @@ void MSWordExportBase::OutputTextNode( SwTextNode& rNode ) } } - FlyProcessingState nStateOfFlyFrame = aAttrIter.OutFlys( nCurrentPos ); + const FlyProcessingState nStateOfFlyFrame = aAttrIter.OutFlys(nCurrentPos); AttrOutput().SetStateOfFlyFrame( nStateOfFlyFrame ); // Append bookmarks in this range after flys, exclusive of final @@ -2774,7 +2774,7 @@ void MSWordExportBase::OutputTextNode( SwTextNode& rNode ) else { // insert final graphic anchors if any before CR - nStateOfFlyFrame = aAttrIter.OutFlys( nEnd ); + aAttrIter.OutFlys(nEnd); // insert final bookmarks if any before CR and after flys AppendBookmarks( rNode, nEnd, 1 ); AppendAnnotationMarks(aAttrIter, nEnd, 1); @@ -2828,7 +2828,7 @@ void MSWordExportBase::OutputTextNode( SwTextNode& rNode ) AttrOutput().WritePostitFieldReference(); // insert final graphic anchors if any before CR - nStateOfFlyFrame = aAttrIter.OutFlys( nEnd ); + aAttrIter.OutFlys(nEnd); // insert final bookmarks if any before CR and after flys AppendBookmarks( rNode, nEnd, 1 ); AppendAnnotationMarks(aAttrIter, nEnd, 1);
