summaryrefslogtreecommitdiff
path: root/unotools/source/config/syslocaleoptions.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'unotools/source/config/syslocaleoptions.cxx')
-rw-r--r--unotools/source/config/syslocaleoptions.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/unotools/source/config/syslocaleoptions.cxx b/unotools/source/config/syslocaleoptions.cxx
index 09a55945ab00..6de88a677989 100644
--- a/unotools/source/config/syslocaleoptions.cxx
+++ b/unotools/source/config/syslocaleoptions.cxx
@@ -38,7 +38,7 @@ using namespace utl;
using namespace com::sun::star::uno;
using namespace com::sun::star::lang;
-SvtSysLocaleOptions_Impl* SvtSysLocaleOptions::pOptions = NULL;
+SvtSysLocaleOptions_Impl* SvtSysLocaleOptions::pOptions = nullptr;
sal_Int32 SvtSysLocaleOptions::nRefCount = 0;
namespace
{
@@ -530,14 +530,14 @@ SvtSysLocaleOptions::~SvtSysLocaleOptions()
if ( !--nRefCount )
{
delete pOptions;
- pOptions = NULL;
+ pOptions = nullptr;
}
}
// static
Mutex& SvtSysLocaleOptions::GetMutex()
{
- static Mutex* pMutex = NULL;
+ static Mutex* pMutex = nullptr;
if( !pMutex )
{
MutexGuard aGuard( Mutex::getGlobalMutex() );
@@ -698,7 +698,7 @@ void SvtSysLocaleOptions::ConfigurationChanged( utl::ConfigurationBroadcaster* p
if ( nHint & SYSLOCALEOPTIONS_HINT_CURRENCY )
{
const Link<LinkParamNone*,void>& rLink = GetCurrencyChangeLink();
- rLink.Call( NULL );
+ rLink.Call( nullptr );
}
::utl::detail::Options::ConfigurationChanged( p, nHint );