summaryrefslogtreecommitdiff
path: root/sw/inc/tblenum.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-11-22 14:09:27 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-11-24 12:38:31 +0100
commitdcda5569c41b33077a1795d1e147572a2d483d04 (patch)
treed312bf653951bfe4e1ab0a7e587e252f519cfdbf /sw/inc/tblenum.hxx
parent32e3238a3734049df5397aa34e569dc15c8a8178 (diff)
remove unused TableChgWidthHeightType::InsertDeleteMode
looks like as a consequence of commit 2d5ce0e1b233c83f91481cd6b9306ac8de7f5ff8 Date: Mon Mar 26 13:08:54 2018 +0200 tdf#116452 Remove "3 seconds to add/delete col/row" functions Change-Id: Iae3e2876ed0a0bc916bb4a53f3050d9baa45b0e7 Reviewed-on: https://gerrit.libreoffice.org/63923 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/inc/tblenum.hxx')
-rw-r--r--sw/inc/tblenum.hxx6
1 files changed, 1 insertions, 5 deletions
diff --git a/sw/inc/tblenum.hxx b/sw/inc/tblenum.hxx
index dd0504f80016..fd9ea7237fa7 100644
--- a/sw/inc/tblenum.hxx
+++ b/sw/inc/tblenum.hxx
@@ -34,14 +34,10 @@ enum class TableChgWidthHeightType : sal_uInt16
InvalidPos = 0x0f,
// The following can be "or"ed in.
- InsertDeleteMode = 0x4000, // Insert/Del-mode: the Bigger-Flag
- // tells what happens:
- // bBigger -> box gets removed.
- // !bBigger-> box gets inserted.
BiggerMode = 0x8000, // Box becomes larger -> else smaller.
};
namespace o3tl {
- template<> struct typed_flags<TableChgWidthHeightType> : is_typed_flags<TableChgWidthHeightType, 0xc00f> {};
+ template<> struct typed_flags<TableChgWidthHeightType> : is_typed_flags<TableChgWidthHeightType, 0x800f> {};
}
constexpr TableChgWidthHeightType extractPosition(TableChgWidthHeightType e) {
return static_cast<TableChgWidthHeightType>(static_cast<sal_uInt16>(e) & 0xf);