summaryrefslogtreecommitdiff
path: root/svl/source/fsstor/fsstorage.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svl/source/fsstor/fsstorage.cxx')
-rw-r--r--svl/source/fsstor/fsstorage.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/svl/source/fsstor/fsstorage.cxx b/svl/source/fsstor/fsstorage.cxx
index 86ba08f7218e..bb70c8c7a1a8 100644
--- a/svl/source/fsstor/fsstorage.cxx
+++ b/svl/source/fsstor/fsstorage.cxx
@@ -78,8 +78,8 @@ struct FSStorage_Impl
: m_aURL( aContent.getURL() )
, m_pContent( new ::ucbhelper::Content( aContent ) )
, m_nMode( nMode )
- , m_pListenersContainer( NULL )
- , m_pTypeCollection( NULL )
+ , m_pListenersContainer( nullptr )
+ , m_pTypeCollection( nullptr )
, m_xContext( xContext )
{
OSL_ENSURE( !m_aURL.isEmpty(), "The URL must not be empty" );
@@ -286,11 +286,11 @@ void SAL_CALL FSStorage::release() throw()
uno::Sequence< uno::Type > SAL_CALL FSStorage::getTypes()
throw( uno::RuntimeException, std::exception )
{
- if ( m_pImpl->m_pTypeCollection == NULL )
+ if ( m_pImpl->m_pTypeCollection == nullptr )
{
::osl::MutexGuard aGuard( m_aMutex );
- if ( m_pImpl->m_pTypeCollection == NULL )
+ if ( m_pImpl->m_pTypeCollection == nullptr )
{
m_pImpl->m_pTypeCollection = new ::cppu::OTypeCollection
( cppu::UnoType<lang::XTypeProvider>::get()
@@ -1155,7 +1155,7 @@ void SAL_CALL FSStorage::dispose()
}
delete m_pImpl;
- m_pImpl = NULL;
+ m_pImpl = nullptr;
}
void SAL_CALL FSStorage::addEventListener(