diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-12-04 10:00:12 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-12-05 09:40:02 +0100 |
commit | 5a73599206916f87c1836af7c4e0a02c28cb9887 (patch) | |
tree | 6720f7077f7700044e8c5f320098732edc322940 /include/svx | |
parent | dfe52570efbfdd988e5727aab9483f20b1975713 (diff) |
remove unused ChangeType enum value
Change-Id: I90f0fb281e59f60dbd3ec0aa088abd6e6caf0323
Reviewed-on: https://gerrit.libreoffice.org/64562
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svx')
-rw-r--r-- | include/svx/tabarea.hxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/svx/tabarea.hxx b/include/svx/tabarea.hxx index d4d3c69fd604..b1307b4c41e6 100644 --- a/include/svx/tabarea.hxx +++ b/include/svx/tabarea.hxx @@ -25,12 +25,11 @@ enum class ChangeType { NONE = 0x00, MODIFIED = 0x01, - CHANGED = 0x02, - SAVED = 0x04, + CHANGED = 0x02 }; namespace o3tl { - template<> struct typed_flags<ChangeType> : is_typed_flags<ChangeType, 0x07> {}; + template<> struct typed_flags<ChangeType> : is_typed_flags<ChangeType, 0x03> {}; } #endif // INCLUDED_SVX_TABAREA_HXX |