summaryrefslogtreecommitdiff
path: root/include/rsc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-10-27 20:41:11 +0200
committerNoel Grandin <noelgrandin@gmail.com>2014-10-28 06:12:28 +0000
commit17a99a9074a7d25cc7e13bf7aaac0fa11e2174a0 (patch)
treefa314e333575af0d219dd87ff589a58736f55f03 /include/rsc
parent282e954477f904524ca192256c4e33ab0585e2f6 (diff)
fdo#84938: replace TIMEF_ constants with enum
Change-Id: Ia6aa4e21fef46b20d1d8996d2f15855b8ba1776e Reviewed-on: https://gerrit.libreoffice.org/12114 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/rsc')
-rw-r--r--include/rsc/rsc-vcl-shared-types.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rsc/rsc-vcl-shared-types.hxx b/include/rsc/rsc-vcl-shared-types.hxx
index 203fa7318696..b93864f2d737 100644
--- a/include/rsc/rsc-vcl-shared-types.hxx
+++ b/include/rsc/rsc-vcl-shared-types.hxx
@@ -23,7 +23,7 @@
#include <sal/types.h>
#include <o3tl/typed_flags_set.hxx>
-enum TimeFieldFormat {TIMEF_NONE, TIMEF_SEC, TIMEF_100TH_SEC, TIMEF_SEC_CS, TimeFieldFormat_FORCE_EQUAL_SIZE=SAL_MAX_ENUM };
+enum class TimeFieldFormat : sal_Int32 { F_NONE, F_SEC, F_100TH_SEC, F_SEC_CS };
enum class KeyFuncType : sal_Int32 { DONTKNOW, NEW, OPEN, SAVE,
SAVEAS, PRINT, CLOSE, QUIT,