summaryrefslogtreecommitdiff
path: root/xmlscript/source/xml_helper/xml_impctx.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmlscript/source/xml_helper/xml_impctx.cxx')
-rw-r--r--xmlscript/source/xml_helper/xml_impctx.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmlscript/source/xml_helper/xml_impctx.cxx b/xmlscript/source/xml_helper/xml_impctx.cxx
index 6b8ac8c8f50e..a553186093ff 100644
--- a/xmlscript/source/xml_helper/xml_impctx.cxx
+++ b/xmlscript/source/xml_helper/xml_impctx.cxx
@@ -193,7 +193,7 @@ DocumentHandlerImpl::DocumentHandlerImpl(
m_nLastPrefix_lookup( UID_UNKNOWN ),
m_aLastPrefix_lookup( "<<< unknown URI >>>" ),
m_nSkipElements( 0 ),
- m_pMutex( 0 )
+ m_pMutex( nullptr )
{
m_elements.reserve( 10 );
@@ -203,7 +203,7 @@ DocumentHandlerImpl::DocumentHandlerImpl(
DocumentHandlerImpl::~DocumentHandlerImpl() throw ()
{
- if (m_pMutex != 0)
+ if (m_pMutex != nullptr)
{
delete m_pMutex;
#if OSL_DEBUG_LEVEL == 0