summaryrefslogtreecommitdiff
path: root/sd/source/ui/remotecontrol/Listener.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-10 10:23:02 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-10 10:31:38 +0100
commit92c697c0e3e4bde88424322875c993c161696b1e (patch)
treeea1be62a0cb8fd7f7e63dd03a52441cedd8e96eb /sd/source/ui/remotecontrol/Listener.cxx
parent65464ed0985802edb96dbcbd1c3eed996f3778bd (diff)
loplugin:nullptr (automatic rewrite)
Change-Id: If1b80da64ba575f07b31dce9bc0e34b7eb9f11a4
Diffstat (limited to 'sd/source/ui/remotecontrol/Listener.cxx')
-rw-r--r--sd/source/ui/remotecontrol/Listener.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/remotecontrol/Listener.cxx b/sd/source/ui/remotecontrol/Listener.cxx
index 72b3c95b8d3b..4792d6e61bfa 100644
--- a/sd/source/ui/remotecontrol/Listener.cxx
+++ b/sd/source/ui/remotecontrol/Listener.cxx
@@ -24,7 +24,7 @@ Listener::Listener( const ::rtl::Reference<Communicator>& rCommunicator,
sd::Transmitter *aTransmitter ):
::cppu::WeakComponentImplHelper< XSlideShowListener >( m_aMutex ),
mCommunicator( rCommunicator ),
- pTransmitter( NULL )
+ pTransmitter( nullptr )
{
pTransmitter = aTransmitter;
}
@@ -134,11 +134,11 @@ void SAL_CALL Listener::slideAnimationsEnded()
void SAL_CALL Listener::disposing()
{
- pTransmitter = NULL;
+ pTransmitter = nullptr;
if ( mController.is() )
{
mController->removeSlideShowListener( this );
- mController = NULL;
+ mController = nullptr;
}
mCommunicator->informListenerDestroyed();
}