summaryrefslogtreecommitdiff
path: root/include/vcl/sysdata.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-10 10:28:29 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-10 10:32:00 +0100
commitd3b6cb7ec2da4afb5687c9d28b2be2f96e6aa7b1 (patch)
treee9d209d6d5f06cacd8e0df78c7f6b8ad45d74be5 /include/vcl/sysdata.hxx
parent45979047abbd9da7a29401f298e8ef9ab58ad337 (diff)
loplugin:nullptr (automatic rewrite)
Change-Id: I05e89f9896170d4df3d1377549ea074f06b884a0
Diffstat (limited to 'include/vcl/sysdata.hxx')
-rw-r--r--include/vcl/sysdata.hxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/include/vcl/sysdata.hxx b/include/vcl/sysdata.hxx
index 57217df2fb57..226db49b6169 100644
--- a/include/vcl/sysdata.hxx
+++ b/include/vcl/sysdata.hxx
@@ -84,17 +84,17 @@ struct SystemEnvData
#elif defined( ANDROID )
#elif defined( IOS )
#elif defined( UNX )
- , pDisplay(NULL)
+ , pDisplay(nullptr)
, aWindow(0)
- , pSalFrame(NULL)
- , pWidget(NULL)
- , pVisual(NULL)
+ , pSalFrame(nullptr)
+ , pWidget(nullptr)
+ , pVisual(nullptr)
, nScreen(0)
, nDepth(0)
, aColormap(0)
- , pAppContext(NULL)
+ , pAppContext(nullptr)
, aShellWindow(0)
- , pShellWidget(NULL)
+ , pShellWidget(nullptr)
#endif
{
}
@@ -167,13 +167,13 @@ struct SystemGraphicsData
#elif defined( IOS )
, rCGContext( NULL )
#elif defined( UNX )
- , pDisplay( NULL )
+ , pDisplay( nullptr )
, hDrawable( 0 )
- , pVisual( NULL )
+ , pVisual( nullptr )
, nScreen( 0 )
, nDepth( 0 )
, aColormap( 0 )
- , pXRenderFormat( NULL )
+ , pXRenderFormat( nullptr )
#endif
{ }
};
@@ -219,7 +219,7 @@ struct SystemFontData
SystemFontData()
: nSize( sizeof( SystemFontData ) )
#if defined( UNX )
- , nFontId( NULL )
+ , nFontId( nullptr )
, nFontFlags( 0 )
#endif
, bFakeBold( false )