summaryrefslogtreecommitdiff
path: root/ucbhelper/source/client/content.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-10 10:26:59 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-10 10:31:55 +0100
commitb4af1664402ce1008e168d18e5e10b5d8f946f1c (patch)
treeebbbeca9ce190b95ad4fe0dd74a5ead68df6f546 /ucbhelper/source/client/content.cxx
parent05b4902145b0924393b5ae4d9e9dfb92d2926b99 (diff)
loplugin:nullptr (automatic rewrite)
Change-Id: I3003db8a411740db48c2e0c6ecd81a7fd9209e6c
Diffstat (limited to 'ucbhelper/source/client/content.cxx')
-rw-r--r--ucbhelper/source/client/content.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/ucbhelper/source/client/content.cxx b/ucbhelper/source/client/content.cxx
index 31e1b2f5cf9e..5962255dfcf2 100644
--- a/ucbhelper/source/client/content.cxx
+++ b/ucbhelper/source/client/content.cxx
@@ -1042,7 +1042,7 @@ bool Content::transferContent( const Content& rSourceContent,
}
Any aRet = pBroker->execute( aCommand, 0, m_xImpl->getEnvironment() );
- if ( pResultURL != NULL )
+ if ( pResultURL != nullptr )
aRet >>= *pResultURL;
return true;
}
@@ -1151,7 +1151,7 @@ void Content_Impl::reinit( const Reference< XContent >& xContent )
{
osl::MutexGuard aGuard( m_aMutex );
- m_xCommandProcessor = 0;
+ m_xCommandProcessor = nullptr;
// #92581# - Don't reset m_aURL!!!
@@ -1183,7 +1183,7 @@ void Content_Impl::reinit( const Reference< XContent >& xContent )
// content object again if demanded ( --> Content_Impl::getContent() )
getURL();
- m_xContent = 0;
+ m_xContent = nullptr;
}
}
@@ -1216,8 +1216,8 @@ void Content_Impl::disposing( const EventObject& Source )
xContent = m_xContent;
m_aURL.clear();
- m_xCommandProcessor = 0;
- m_xContent = 0;
+ m_xCommandProcessor = nullptr;
+ m_xContent = nullptr;
}
if ( xContent.is() )