sw/inc/IDocumentRedlineAccess.hxx | 5 +++++ 1 file changed, 5 insertions(+)
New commits: commit 1ede0a7ccf8c613709b52fe7bc284b070d3f987c Author: Miklos Vajna <[email protected]> AuthorDate: Fri Jun 27 09:18:03 2025 +0200 Commit: Miklos Vajna <[email protected]> CommitDate: Fri Jun 27 16:58:53 2025 +0200 sw: document RedlineFlags And point out that part of this has a per-view equivalent. Change-Id: I3973b372858facf57e4cbd2683b5ca5a007d9617 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/187109 Reviewed-by: Miklos Vajna <[email protected]> Tested-by: Jenkins diff --git a/sw/inc/IDocumentRedlineAccess.hxx b/sw/inc/IDocumentRedlineAccess.hxx index 03c14a11e014..e270ad92c57e 100644 --- a/sw/inc/IDocumentRedlineAccess.hxx +++ b/sw/inc/IDocumentRedlineAccess.hxx @@ -41,6 +41,11 @@ class SwStartNode; class SwNode; class SwViewShell; +/// Sets per-document flags for track change recording and show/hiding. The later is read by the +/// layout, which is shared between views. +/// +/// Note that RedlineFlags::On has a per-view version at SwViewOption::IsRedlineRecordingOn(), and +/// that is used when the document has at least one view. enum class RedlineFlags { NONE = 0x000, ///< no RedlineFlags
