From beb8f3a6bf2b2549f5303f24119a9c07130b37a4 Mon Sep 17 00:00:00 2001 From: Matteo Casalin Date: Mon, 24 Aug 2015 06:54:57 +0200 Subject: SYSLOCALEOPTIONS_HINTs are sal_uInt32, not sal_uLong Change-Id: I931dfeef0c1c9fafd3e2e7415efe9a45f78989d0 --- unotools/source/config/syslocaleoptions.cxx | 4 ++-- 1 file 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(); -- cgit