summaryrefslogtreecommitdiff
path: root/include/svtools/asynclink.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-10 10:25:17 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-10 10:31:48 +0100
commit28f4bee7bd7378141d8569186162e1a3166eb012 (patch)
tree97cb855eec76da937068cda5c5f0f7d5bcd61e47 /include/svtools/asynclink.hxx
parentbf057fab3c0d17bf2832c8d9fc6d34b1b859e660 (diff)
loplugin:nullptr (automatic rewrite)
Change-Id: I7fc4b4d5c895f241cfb052b009e943e073f3befe
Diffstat (limited to 'include/svtools/asynclink.hxx')
-rw-r--r--include/svtools/asynclink.hxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/include/svtools/asynclink.hxx b/include/svtools/asynclink.hxx
index f0fc74cec2af..2c1421cd1c49 100644
--- a/include/svtools/asynclink.hxx
+++ b/include/svtools/asynclink.hxx
@@ -47,20 +47,20 @@ class SVT_DLLPUBLIC AsynchronLink
public:
AsynchronLink( const Link<void*,void>& rLink )
: _aLink( rLink )
- , _nEventId( 0 )
- , _pIdle( 0 )
+ , _nEventId( nullptr )
+ , _pIdle( nullptr )
, _bInCall( false )
- , _pDeleted( 0 )
- , _pArg( 0 )
- , _pMutex( 0 )
+ , _pDeleted( nullptr )
+ , _pArg( nullptr )
+ , _pMutex( nullptr )
{}
AsynchronLink()
- : _nEventId( 0 )
- , _pIdle( 0 )
+ : _nEventId( nullptr )
+ , _pIdle( nullptr )
, _bInCall( false )
- , _pDeleted( 0 )
- , _pArg( 0 )
- , _pMutex( 0 )
+ , _pDeleted( nullptr )
+ , _pArg( nullptr )
+ , _pMutex( nullptr )
{}
~AsynchronLink();