sw/inc/IDocumentRedlineAccess.hxx | 5 +++++ 1 file changed, 5 insertions(+)
New commits: commit e0d5f99933ee90c451248e9571d30cb5d8520f5f Author: Miklos Vajna <[email protected]> AuthorDate: Fri Jun 27 09:18:03 2025 +0200 Commit: Caolán McNamara <[email protected]> CommitDate: Fri Jun 27 14:06:00 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/+/187077 Reviewed-by: Caolán McNamara <[email protected]> Tested-by: Jenkins CollaboraOffice <[email protected]> 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
