summaryrefslogtreecommitdiff
path: root/xmloff/source/forms/handler/form_handler_factory.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source/forms/handler/form_handler_factory.cxx')
-rw-r--r--xmloff/source/forms/handler/form_handler_factory.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/xmloff/source/forms/handler/form_handler_factory.cxx b/xmloff/source/forms/handler/form_handler_factory.cxx
index b6a285100b1c..1444f9cb883b 100644
--- a/xmloff/source/forms/handler/form_handler_factory.cxx
+++ b/xmloff/source/forms/handler/form_handler_factory.cxx
@@ -28,14 +28,14 @@ namespace xmloff
namespace
{
- static PPropertyHandler s_pVCLDateHandler = NULL;
- static PPropertyHandler s_pVCLTimeHandler = NULL;
+ static PPropertyHandler s_pVCLDateHandler = nullptr;
+ static PPropertyHandler s_pVCLTimeHandler = nullptr;
}
//= FormHandlerFactory
PPropertyHandler FormHandlerFactory::getFormPropertyHandler( const PropertyId i_propertyId )
{
- PPropertyHandler pHandler( NULL );
+ PPropertyHandler pHandler( nullptr );
switch ( i_propertyId )
{
@@ -43,10 +43,10 @@ namespace xmloff
case PID_DATE_MAX:
case PID_DEFAULT_DATE:
case PID_DATE:
- if ( s_pVCLDateHandler.get() == NULL )
+ if ( s_pVCLDateHandler.get() == nullptr )
{
::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() );
- if ( s_pVCLDateHandler == NULL )
+ if ( s_pVCLDateHandler == nullptr )
s_pVCLDateHandler = new VCLDateHandler();
}
pHandler = s_pVCLDateHandler;
@@ -56,10 +56,10 @@ namespace xmloff
case PID_TIME_MAX:
case PID_DEFAULT_TIME:
case PID_TIME:
- if ( s_pVCLTimeHandler.get() == NULL )
+ if ( s_pVCLTimeHandler.get() == nullptr )
{
::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() );
- if ( s_pVCLTimeHandler == NULL )
+ if ( s_pVCLTimeHandler == nullptr )
s_pVCLTimeHandler = new VCLTimeHandler();
}
pHandler = s_pVCLTimeHandler;