diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-12-04 11:58:28 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-12-05 09:38:35 +0100 |
commit | cee2602d14214ff44dbc995f790b4d72b764f800 (patch) | |
tree | 0ae799c7f0cc558b07474069854d1c6c4196da4a /include/svtools | |
parent | e33e73862ba2bbec9ee1f4e21ad12c6b0c0d13e5 (diff) |
remove unused RulerBorderStyle enum value
Change-Id: I9f116ee6917da363bb7f23c039489d5683624582
Reviewed-on: https://gerrit.libreoffice.org/64568
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svtools')
-rw-r--r-- | include/svtools/ruler.hxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/svtools/ruler.hxx b/include/svtools/ruler.hxx index 26183807d4f8..8f042909bd2b 100644 --- a/include/svtools/ruler.hxx +++ b/include/svtools/ruler.hxx @@ -502,11 +502,10 @@ enum class RulerBorderStyle { Sizeable = 0x0001, Moveable = 0x0002, Variable = 0x0004, - Table = 0x0008, - Invisible = 0x0040 + Invisible = 0x0008 }; namespace o3tl { - template<> struct typed_flags<RulerBorderStyle> : is_typed_flags<RulerBorderStyle, 0x004f> {}; + template<> struct typed_flags<RulerBorderStyle> : is_typed_flags<RulerBorderStyle, 0x000f> {}; } struct RulerBorder |