summaryrefslogtreecommitdiff
path: root/sw/source/core/unocore/unoredline.cxx
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@collabora.com>2014-10-03 13:22:18 +0200
committerLuboš Luňák <l.lunak@collabora.com>2014-10-03 13:27:16 +0200
commitc469d1463073ba312d55ae3076b86381bfe89ed8 (patch)
treefe75ae5bfd110438ab6ccdfe0a467f651163e7b2 /sw/source/core/unocore/unoredline.cxx
parent9dbf817fe5c5253fba0831aefa17575ae0ba3af1 (diff)
report ParagraphFormat redline type in UNO too
Change-Id: I0cf7586a154ca73ce64a2328ff8df1858e2290ac
Diffstat (limited to 'sw/source/core/unocore/unoredline.cxx')
-rw-r--r--sw/source/core/unocore/unoredline.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/sw/source/core/unocore/unoredline.cxx b/sw/source/core/unocore/unoredline.cxx
index 3575381b0b7c..71dfe308ff76 100644
--- a/sw/source/core/unocore/unoredline.cxx
+++ b/sw/source/core/unocore/unoredline.cxx
@@ -211,6 +211,7 @@ static OUString lcl_RedlineTypeToOUString(RedlineType_t eType)
case nsRedlineType_t::REDLINE_INSERT: sRet = "Insert"; break;
case nsRedlineType_t::REDLINE_DELETE: sRet = "Delete"; break;
case nsRedlineType_t::REDLINE_FORMAT: sRet = "Format"; break;
+ case nsRedlineType_t::REDLINE_PARAGRAPH_FORMAT: sRet = "ParagraphFormat"; break;
case nsRedlineType_t::REDLINE_TABLE: sRet = "TextTable"; break;
case nsRedlineType_t::REDLINE_FMTCOLL:sRet = "Style"; break;
}