summaryrefslogtreecommitdiff
path: root/unotools
diff options
context:
space:
mode:
authorMatteo Casalin <matteo.casalin@yahoo.com>2015-08-24 06:54:57 +0200
committerMatteo Casalin <matteo.casalin@yahoo.com>2015-08-29 16:57:02 +0200
commitbeb8f3a6bf2b2549f5303f24119a9c07130b37a4 (patch)
tree4811963c7cb8913daa7b48a63338b42b0fa1ce35 /unotools
parent986a172a749288d5ee09eb548ff4b4a7153023fe (diff)
SYSLOCALEOPTIONS_HINTs are sal_uInt32, not sal_uLong
Change-Id: I931dfeef0c1c9fafd3e2e7415efe9a45f78989d0
Diffstat (limited to 'unotools')
-rw-r--r--unotools/source/config/syslocaleoptions.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/unotools/source/config/syslocaleoptions.cxx b/unotools/source/config/syslocaleoptions.cxx
index c349f2e5dc0f..fb322bc6d541 100644
--- a/unotools/source/config/syslocaleoptions.cxx
+++ b/unotools/source/config/syslocaleoptions.cxx
@@ -395,7 +395,7 @@ void SvtSysLocaleOptions_Impl::SetLocaleString( const OUString& rStr )
MakeRealLocale();
LanguageTag::setConfiguredSystemLanguage( m_aRealLocale.getLanguageType() );
SetModified();
- sal_uLong nHint = SYSLOCALEOPTIONS_HINT_LOCALE;
+ sal_uInt32 nHint = SYSLOCALEOPTIONS_HINT_LOCALE;
if ( m_aCurrencyString.isEmpty() )
nHint |= SYSLOCALEOPTIONS_HINT_CURRENCY;
NotifyListeners( nHint );
@@ -457,7 +457,7 @@ void SvtSysLocaleOptions_Impl::SetIgnoreLanguageChange( bool bSet)
void SvtSysLocaleOptions_Impl::Notify( const Sequence< OUString >& seqPropertyNames )
{
- sal_uLong nHint = 0;
+ sal_uInt32 nHint = 0;
Sequence< Any > seqValues = GetProperties( seqPropertyNames );
Sequence< sal_Bool > seqROStates = GetReadOnlyStates( seqPropertyNames );
sal_Int32 nCount = seqPropertyNames.getLength();