summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-02-09 10:11:36 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-02-10 06:05:32 +0000
commit29eb1ceeae4a3108ce134b45e77a37ade7d7a4f8 (patch)
treeb0a053c1fd281e59c836a76705788c4aee80e104 /include
parentconvert SearchParam::SearchType to scoped enum (diff)
downloadcore-29eb1ceeae4a3108ce134b45e77a37ade7d7a4f8.tar.gz
core-29eb1ceeae4a3108ce134b45e77a37ade7d7a4f8.zip
convert SvtSysLocaleOptions::EOption to scoped enum
and drop unused E_UILOCALE enumerator Change-Id: Ic9bdac91fab15af45e7dbd613e6e44b73b5cf9de Reviewed-on: https://gerrit.libreoffice.org/34066 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r--include/unotools/syslocaleoptions.hxx9
1 files changed, 4 insertions, 5 deletions
diff --git a/include/unotools/syslocaleoptions.hxx b/include/unotools/syslocaleoptions.hxx
index bb86e644cbf3..68af7dcb6e3d 100644
--- a/include/unotools/syslocaleoptions.hxx
+++ b/include/unotools/syslocaleoptions.hxx
@@ -42,12 +42,11 @@ class SAL_WARN_UNUSED UNOTOOLS_DLLPUBLIC SvtSysLocaleOptions : public utl::detai
public:
- enum EOption
+ enum class EOption
{
- E_LOCALE,
- E_UILOCALE,
- E_CURRENCY,
- E_DATEPATTERNS
+ Locale,
+ Currency,
+ DatePatterns
};
SvtSysLocaleOptions();
virtual ~SvtSysLocaleOptions() override;