summaryrefslogtreecommitdiff
path: root/include/tools
diff options
context:
space:
mode:
authorLászló Németh <nemeth@numbertext.org>2021-12-07 13:14:29 +0100
committerLászló Németh <nemeth@numbertext.org>2021-12-08 13:07:51 +0100
commitf348440e17debacbcba9153e238e010e8c020bdc (patch)
treec13d269f5a6b1bec92724294f70aea4616519bc9 /include/tools
parent76784f2dbf6d8641cfb6bf5d24e37521d6c806df (diff)
tdf#146120 sw: show tracked table changes with different color
In Change Tracking, show deleted table rows in cyan and inserted rows in pink. In this case, don't show original table row or cell background. Follow-up to commit f481c2c8e74bded11fac754e493560391229dbcd "tdf#144057 sw track changes: hide deleted table rows". Change-Id: Ib9cc411b62b92bc8a83dda7589f3e798f7e96f41 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/126482 Tested-by: László Németh <nemeth@numbertext.org> Reviewed-by: László Németh <nemeth@numbertext.org>
Diffstat (limited to 'include/tools')
-rw-r--r--include/tools/color.hxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/tools/color.hxx b/include/tools/color.hxx
index 6ab0fa3ba67d..5fcf840edfe6 100644
--- a/include/tools/color.hxx
+++ b/include/tools/color.hxx
@@ -499,6 +499,8 @@ constexpr ::Color COL_AUTHOR8_LIGHT ( 0xE2, 0xEA, 0xF1 );
constexpr ::Color COL_AUTHOR9_DARK ( 0xD1, 0x76, 0x00 );
constexpr ::Color COL_AUTHOR9_NORMAL ( 0xFF, 0xE2, 0xB9 );
constexpr ::Color COL_AUTHOR9_LIGHT ( 0xFF, 0xE7, 0xC7 );
+constexpr ::Color COL_AUTHOR_TABLE_INS ( 0xE1, 0xF2, 0xFA );
+constexpr ::Color COL_AUTHOR_TABLE_DEL ( 0xFC, 0xE6, 0xF4 );
template<typename charT, typename traits>
inline std::basic_ostream<charT, traits>& operator <<(std::basic_ostream<charT, traits>& rStream, const Color& rColor)