summaryrefslogtreecommitdiff
path: root/vcl/source
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2016-05-15 17:55:48 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-05-16 06:43:19 +0000
commit52372ae0370cb755ed810eead456d75c8cb1adf3 (patch)
tree6415c4f1d284229ef8a308af31bb1f4210a1f963 /vcl/source
parentb852642ecdcba105d14b1927309cfb176fb7d417 (diff)
convert NUMERICFORMATTER to scoped enum
Change-Id: Ia6762153a73f01a237bfc03bf9a95a4117d1d998 Reviewed-on: https://gerrit.libreoffice.org/25010 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'vcl/source')
-rw-r--r--vcl/source/control/field.cxx15
1 files changed, 6 insertions, 9 deletions
diff --git a/vcl/source/control/field.cxx b/vcl/source/control/field.cxx
index 849f2f05f1ad..4ae94361f07a 100644
--- a/vcl/source/control/field.cxx
+++ b/vcl/source/control/field.cxx
@@ -531,28 +531,25 @@ void NumericFormatter::ImplLoadRes( const ResId& rResId )
if( pMgr )
{
- sal_uLong nMask = pMgr->ReadLong();
+ RscNumFormatterFlags nMask = (RscNumFormatterFlags)pMgr->ReadLong();
- if ( NUMERICFORMATTER_MIN & nMask )
+ if ( RscNumFormatterFlags::Min & nMask )
mnMin = pMgr->ReadLong();
- if ( NUMERICFORMATTER_MAX & nMask )
+ if ( RscNumFormatterFlags::Max & nMask )
mnMax = pMgr->ReadLong();
- if ( NUMERICFORMATTER_STRICTFORMAT & nMask )
+ if ( RscNumFormatterFlags::StrictFormat & nMask )
SetStrictFormat( pMgr->ReadShort() != 0 );
- if ( NUMERICFORMATTER_DECIMALDIGITS & nMask )
+ if ( RscNumFormatterFlags::DecimalDigits & nMask )
SetDecimalDigits( pMgr->ReadShort() );
- if ( NUMERICFORMATTER_VALUE & nMask )
+ if ( RscNumFormatterFlags::Value & nMask )
{
mnFieldValue = ClipAgainstMinMax(pMgr->ReadLong());
mnLastValue = mnFieldValue;
}
-
- if ( NUMERICFORMATTER_NOTHOUSANDSEP & nMask )
- SetUseThousandSep( pMgr->ReadShort() == 0 );
}
}