diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-12-05 11:43:30 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-12-07 07:38:53 +0100 |
commit | 3aa02154941bd04c1646948bcfbec20c2873e189 (patch) | |
tree | f2dc1f9407aa552f7249ef7fcfa56fd2e5e9f76d /include/editeng | |
parent | 9afd48075fafda24d554d17ca4a31e98e3f6be35 (diff) |
remove unused SvxNumRuleFlags::CHAR_TEXT_DISTANCE
which is dead as far back as its introduction in
commit fd069bee7e57ad529c3c0974559fd2d84ec3151a
Date: Mon Sep 18 16:07:07 2000 +0000
initial import
Change-Id: Ieff923732005aaa48cfae4918e8094020e6a540b
Reviewed-on: https://gerrit.libreoffice.org/64715
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/editeng')
-rw-r--r-- | include/editeng/numitem.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/editeng/numitem.hxx b/include/editeng/numitem.hxx index 94cc2e90cf07..8fb543e7a305 100644 --- a/include/editeng/numitem.hxx +++ b/include/editeng/numitem.hxx @@ -221,7 +221,6 @@ enum class SvxNumRuleFlags { NONE = 0x0000, CONTINUOUS = 0x0001, // consecutive numbers possible? - CHAR_TEXT_DISTANCE = 0x0002, // Distance Symbol<->Text? CHAR_STYLE = 0x0004, // Character styles? BULLET_REL_SIZE = 0x0008, // relative bullet size? BULLET_COLOR = 0x0010, // Bullet color @@ -231,7 +230,7 @@ enum class SvxNumRuleFlags }; namespace o3tl { - template<> struct typed_flags<SvxNumRuleFlags> : is_typed_flags<SvxNumRuleFlags, 0x03df> {}; + template<> struct typed_flags<SvxNumRuleFlags> : is_typed_flags<SvxNumRuleFlags, 0x03dd> {}; } enum class SvxNumRuleType |