diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-04-13 14:23:41 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-04-19 08:25:59 +0200 |
commit | 6390d77a1498ff2474522031af4a68af5e865d8d (patch) | |
tree | a9ed0f2242e09b4de943e02c533a04861c011324 /unotools | |
parent | e175f9f4393eb3badd763fa5b1cdc5b3aabab0e4 (diff) |
convert MeasurementSystem to scoped enum
Change-Id: I5d26c50aa0e2c68edab6ee217ae6bdb0ee45dc09
Reviewed-on: https://gerrit.libreoffice.org/36525
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/source/i18n/localedatawrapper.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unotools/source/i18n/localedatawrapper.cxx b/unotools/source/i18n/localedatawrapper.cxx index 477794e23667..147125c38a83 100644 --- a/unotools/source/i18n/localedatawrapper.cxx +++ b/unotools/source/i18n/localedatawrapper.cxx @@ -471,9 +471,9 @@ MeasurementSystem LocaleDataWrapper::mapMeasurementStringToEnum( const OUString& { //! TODO: could be cached too if ( rMS.equalsIgnoreAsciiCase( "metric" ) ) - return MEASURE_METRIC; + return MeasurementSystem::Metric; //! TODO: other measurement systems? => extend enum MeasurementSystem - return MEASURE_US; + return MeasurementSystem::US; } void LocaleDataWrapper::getSecondaryCalendarImpl() |