summaryrefslogtreecommitdiff
path: root/sw/inc/IDocumentRedlineAccess.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-12-10 10:40:22 +0000
committerXisco Faulí <xiscofauli@libreoffice.org>2019-12-11 10:28:40 +0100
commitc6c75d7ba2633316e53366450343d56956c58391 (patch)
treee6b270952ebb5033a2b4b2aa2ebb178dfd5e9cbb /sw/inc/IDocumentRedlineAccess.hxx
parent6d87a3ab7947ab862c56f1c73c8ca1b08411adcf (diff)
Resolves: tdf#129250 move redline type into RedlinData so we can sort on it
Change-Id: Ia8e6744c1679655240a9a9cee9425030e994e16b Reviewed-on: https://gerrit.libreoffice.org/84806 Tested-by: Jenkins Reviewed-by: Xisco Faulí <xiscofauli@libreoffice.org>
Diffstat (limited to 'sw/inc/IDocumentRedlineAccess.hxx')
-rw-r--r--sw/inc/IDocumentRedlineAccess.hxx16
1 files changed, 1 insertions, 15 deletions
diff --git a/sw/inc/IDocumentRedlineAccess.hxx b/sw/inc/IDocumentRedlineAccess.hxx
index 7f9eeee6a11e..395fae8d47e2 100644
--- a/sw/inc/IDocumentRedlineAccess.hxx
+++ b/sw/inc/IDocumentRedlineAccess.hxx
@@ -28,6 +28,7 @@
#include <com/sun/star/uno/Sequence.h>
#include <o3tl/typed_flags_set.hxx>
+#include <svx/ctredlin.hxx>
#include "docary.hxx"
@@ -60,21 +61,6 @@ namespace o3tl
template<> struct typed_flags<RedlineFlags> : is_typed_flags<RedlineFlags, 0x533> {};
}
-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
-};
inline OUString SwRedlineTypeToOUString(RedlineType eType)
{
OUString sRet;