diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-02-15 09:45:57 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-02-15 09:45:57 +0200 |
commit | 60542769488cbf31339e86dc2688a064c6e07917 (patch) | |
tree | 520a231143469c84b6f8cd49e4f13ec80f23412c /sd/inc | |
parent | 12b2803f196b897ffb901b0eebe271c5ee43d03e (diff) |
convert EValue to scoped enum
and drop unused enumerators
Change-Id: I22629ee4a514053030d7120ee8a8fb8145163fad
Diffstat (limited to 'sd/inc')
-rw-r--r-- | sd/inc/CustomAnimationEffect.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/inc/CustomAnimationEffect.hxx b/sd/inc/CustomAnimationEffect.hxx index deda3a427623..187437f90b7d 100644 --- a/sd/inc/CustomAnimationEffect.hxx +++ b/sd/inc/CustomAnimationEffect.hxx @@ -38,7 +38,7 @@ class SdrPathObj; namespace sd { -enum EValue { VALUE_FROM, VALUE_TO, VALUE_BY, VALUE_FIRST, VALUE_LAST }; +enum class EValue { To, By }; class CustomAnimationEffect; |