sw/source/core/layout/tabfrm.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 022ad3a7cc5898d657804c0a6a64a842af38323a Author: Mike Kaganski <[email protected]> AuthorDate: Mon Jan 12 12:26:17 2026 +0100 Commit: Mike Kaganski <[email protected]> CommitDate: Tue Jan 13 07:39:01 2026 +0100 The first initialization is unused; drop it Helps to see where the variable is actually initialized. Change-Id: I98f0e591046b641fbffdf51a17b57ca9d275cd24 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/197089 Tested-by: Jenkins Reviewed-by: Mike Kaganski <[email protected]> diff --git a/sw/source/core/layout/tabfrm.cxx b/sw/source/core/layout/tabfrm.cxx index 8d7ab18c2eed..236a740e6b29 100644 --- a/sw/source/core/layout/tabfrm.cxx +++ b/sw/source/core/layout/tabfrm.cxx @@ -1411,7 +1411,7 @@ bool SwTabFrame::Split(const SwTwips nCutPos, bool bTryToSplit, } SwRowFrame* pLastRow = nullptr; // points to the last remaining line in master - SwRowFrame* pFollowRow = nullptr; // points to either the follow flow line or the + SwRowFrame* pFollowRow; // points to either the follow flow line or the // first regular line in the follow if ( bSplitRowAllowed )
