diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-12-10 10:40:22 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-12-10 12:47:48 +0100 |
commit | e6271a8a4eafcbb357bbd3cf21126f64b45125e9 (patch) | |
tree | d52df138180f821b613637f5da8d9d64b41a979c /include/svx/ctredlin.hxx | |
parent | 88ca6e9904e87ae3473a5d8936adb4a2ced8572f (diff) |
Resolves: tdf#129250 move redline type into RedlinData so we can sort on it
Change-Id: Ia8e6744c1679655240a9a9cee9425030e994e16b
Reviewed-on: https://gerrit.libreoffice.org/84805
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/svx/ctredlin.hxx')
-rw-r--r-- | include/svx/ctredlin.hxx | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/include/svx/ctredlin.hxx b/include/svx/ctredlin.hxx index 884ce5aeb50c..91c95fa52454 100644 --- a/include/svx/ctredlin.hxx +++ b/include/svx/ctredlin.hxx @@ -46,15 +46,32 @@ enum class SvxRedlinDateMode BEFORE, SINCE, EQUAL, NOTEQUAL, BETWEEN, SAVE, NONE }; +enum class RedlineType : sal_uInt16 +{ + // Range of RedlineTypes is 0 to 127. + Insert = 0x0,// Content has been inserted. + Delete = 0x1,// Content has been deleted. + Format = 0x2,// Attributes have been applied. + Table = 0x3,// Table structure has been altered. + FmtColl = 0x4,// Style has been altered (Autoformat!). + ParagraphFormat = 0x5,// Paragraph attributes have been changed. + TableRowInsert = 0x6,// Table row has been inserted. + TableRowDelete = 0x7,// Table row has been deleted. + TableCellInsert = 0x8,// Table cell has been inserted. + TableCellDelete = 0x9,// Table cell has been deleted. + Any = USHRT_MAX // special value to indicate any redline type in some method calls +}; + /// Struct for sorting data. class SAL_WARN_UNUSED SVX_DLLPUBLIC RedlinData { public: RedlinData(); virtual ~RedlinData(); - bool bDisabled; DateTime aDateTime; void* pData; + RedlineType eType; + bool bDisabled; }; class SAL_WARN_UNUSED SVX_DLLPUBLIC SvxRedlinTable |