From d1775349e4ea619aa7b634bcd7161374107038a1 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 10 Nov 2015 16:20:12 +0100 Subject: loplugin:nullptr (automatic rewrite; Mac-specific code) Change-Id: I90a955eb3e485723bb81e7164edcf60f7b0e94c7 --- include/vcl/sysdata.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/vcl/sysdata.hxx') diff --git a/include/vcl/sysdata.hxx b/include/vcl/sysdata.hxx index 226db49b6169..2c50797c7b68 100644 --- a/include/vcl/sysdata.hxx +++ b/include/vcl/sysdata.hxx @@ -79,7 +79,7 @@ struct SystemEnvData #if defined( WNT ) , hWnd(0) #elif defined( MACOSX ) - , mpNSView(NULL) + , mpNSView(nullptr) , mbOpenGL(false) #elif defined( ANDROID ) #elif defined( IOS ) @@ -161,7 +161,7 @@ struct SystemGraphicsData , hDC( 0 ) , hWnd( 0 ) #elif defined( MACOSX ) - , rCGContext( NULL ) + , rCGContext( nullptr ) #elif defined( ANDROID ) // Nothing #elif defined( IOS ) -- cgit