diff options
author | Noel Grandin <noel@peralex.com> | 2016-09-02 12:58:07 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-09-05 08:21:46 +0200 |
commit | 2df04c81cf08301f8b4479471dd59352bf90b6e3 (patch) | |
tree | 2673c8366b7abb4f54147ea8d5e7fd578201c016 /include/vcl | |
parent | 0112840eb074dd0feeedb4aa132e7e04c2b855b1 (diff) |
convert ExtTimeFieldFormat to scoped enum
Change-Id: I6cb4e057f7a5b83edb51048f24372d19fbf48177
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/vclenum.hxx | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/include/vcl/vclenum.hxx b/include/vcl/vclenum.hxx index 3441ba627244..3324b3d120ce 100644 --- a/include/vcl/vclenum.hxx +++ b/include/vcl/vclenum.hxx @@ -24,9 +24,12 @@ #include <sal/types.h> #include <tools/fontenum.hxx> -enum ExtTimeFieldFormat { EXTTIMEF_24H_SHORT, EXTTIMEF_24H_LONG, - EXTTIMEF_12H_SHORT, EXTTIMEF_12H_LONG, - EXTTIMEF_DURATION_SHORT, EXTTIMEF_DURATION_LONG }; +enum class ExtTimeFieldFormat +{ + Short24H, Long24H, + Short12H, Long12H, + ShortDuration, LongDuration +}; enum class ExtDateFieldFormat { |