diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-03-16 20:52:34 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-03-16 20:52:39 +0000 |
commit | e7d405b74e30218a85a1e1ec371c8175df06ded7 (patch) | |
tree | 0f3d4e67473d3d091e4e0f1cba5b08b3c1abeda7 /vcl | |
parent | e3d0e8069e3bd82831b0070f70052f2202180192 (diff) |
WaE: loplugin:nullptr
Change-Id: I279d0021e7cdfd7e2d73ec6542e9ba27f300606c
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/window/window2.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/window/window2.cxx b/vcl/source/window/window2.cxx index 3f6355e65df6..457cd9f8006f 100644 --- a/vcl/source/window/window2.cxx +++ b/vcl/source/window/window2.cxx @@ -1024,13 +1024,13 @@ void Window::SetCompoundControl( bool bCompound ) void Window::IncrementLockCount() { - assert( mpWindowImpl != NULL ); + assert( mpWindowImpl != nullptr ); mpWindowImpl->mnLockCount++; } void Window::DecrementLockCount() { - assert( mpWindowImpl != NULL ); + assert( mpWindowImpl != nullptr ); if (mpWindowImpl) mpWindowImpl->mnLockCount--; } |