diff options
author | Gökay Şatır <gokay.satir@collabora.com> | 2024-01-30 16:41:04 +0300 |
---|---|---|
committer | Caolán McNamara <caolan.mcnamara@collabora.com> | 2024-02-09 11:53:23 +0100 |
commit | 48d2d456d8bcb296b4b2f6cc2d1184f9d799f070 (patch) | |
tree | 1052f1054b14ccf14a43090a3ab2d5bde91d5c17 /sw/inc | |
parent | 30fb8cde7579fb5da15c1d8da9611198f2f5ce78 (diff) |
Writer: Improve redline communication with libreofficeKit.
When changes are tracked and user adds / removes a comment, we need a better communication.
This PR improves the communication and sends the layout status of comments.
Still there are things to do, like (while tracking is on):
* We need to communicate when a change in comment is approved / rejected.
* When user performs an undo on the removed comment.
Signed-off-by: Gökay Şatır <gokay.satir@collabora.com>
Change-Id: Ia3ea4b44c116cc571337e57960aa4f12f934701c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162756
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
Tested-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/163155
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/fmtfld.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sw/inc/fmtfld.hxx b/sw/inc/fmtfld.hxx index ab1953f00114..ff9f06e5dc66 100644 --- a/sw/inc/fmtfld.hxx +++ b/sw/inc/fmtfld.hxx @@ -177,7 +177,8 @@ enum class SwFormatFieldHintWhich REMOVED = 2, FOCUS = 3, CHANGED = 4, - RESOLVED = 5 + RESOLVED = 5, + REDLINED_DELETION = 6 }; /// This SfxHint subclass is produced by code that changes the doc model (e.g. SwNodes::ChgNode()), |