summaryrefslogtreecommitdiff
path: root/sd/source/ui/remotecontrol/Communicator.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/remotecontrol/Communicator.cxx')
-rw-r--r--sd/source/ui/remotecontrol/Communicator.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sd/source/ui/remotecontrol/Communicator.cxx b/sd/source/ui/remotecontrol/Communicator.cxx
index 33f05f228246..f983937554ac 100644
--- a/sd/source/ui/remotecontrol/Communicator.cxx
+++ b/sd/source/ui/remotecontrol/Communicator.cxx
@@ -29,8 +29,8 @@ using namespace osl;
Communicator::Communicator( IBluetoothSocket *pSocket ):
Thread( "CommunicatorThread" ),
mpSocket( pSocket ),
- pTransmitter( 0 ),
- mListener( 0 )
+ pTransmitter( nullptr ),
+ mListener( nullptr )
{
}
@@ -120,11 +120,11 @@ void Communicator::execute()
pTransmitter->notifyFinished();
pTransmitter->join();
- pTransmitter = NULL;
+ pTransmitter = nullptr;
mpSocket->close();
delete mpSocket;
- mpSocket = NULL;
+ mpSocket = nullptr;
RemoteServer::removeCommunicator( this );
}
@@ -152,7 +152,7 @@ void Communicator::disposeListener()
if ( mListener.is() )
{
mListener->disposing();
- mListener = NULL;
+ mListener = nullptr;
}
}