summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vcl/source/window/window2.cxx4
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--;
}