diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-11-26 11:15:43 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-11-27 13:53:26 +0100 |
commit | fb56de2ef744583a07ec02476fc9bc75c525e863 (patch) | |
tree | 53421afd8d38ae1e4c517aecf7ed695b9214ee5c /include | |
parent | e54d65dea830ca33cf88ae53941a83987afbb48a (diff) |
remove unused RulerBorderStyle enum values
Change-Id: I4f10e323293485e7a1969fd4c80873aa05971e6c
Reviewed-on: https://gerrit.libreoffice.org/64084
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/svtools/ruler.hxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/svtools/ruler.hxx b/include/svtools/ruler.hxx index 5a7c463aa3b5..26183807d4f8 100644 --- a/include/svtools/ruler.hxx +++ b/include/svtools/ruler.hxx @@ -503,12 +503,10 @@ enum class RulerBorderStyle { Moveable = 0x0002, Variable = 0x0004, Table = 0x0008, - Snap = 0x0010, - Margin = 0x0020, Invisible = 0x0040 }; namespace o3tl { - template<> struct typed_flags<RulerBorderStyle> : is_typed_flags<RulerBorderStyle, 0x007f> {}; + template<> struct typed_flags<RulerBorderStyle> : is_typed_flags<RulerBorderStyle, 0x004f> {}; } struct RulerBorder |