summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2016-02-15 22:47:25 +0200
committerTor Lillqvist <tml@collabora.com>2016-02-15 22:47:25 +0200
commitb3e8406f53e29e4401d24b8aaa3020766cc61f02 (patch)
tree1fddcc4e402e129d0239fbe45c651ad365d7bbed /vcl
parentb07fd644bab69fb19c58e6dae394e963a463d2e1 (diff)
loplugin:nullptr
Change-Id: I8dafbf99638fd24828327ce4493bfbbf1b9d2c6d
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/app/svmain.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/source/app/svmain.cxx b/vcl/source/app/svmain.cxx
index 0f329e6045fe..f59f5f9bef7c 100644
--- a/vcl/source/app/svmain.cxx
+++ b/vcl/source/app/svmain.cxx
@@ -244,9 +244,9 @@ uno::Any SAL_CALL DesktopEnvironmentContext::getValueByName( const OUString& Nam
static bool isInitVCL()
{
ImplSVData* pSVData = ImplGetSVData();
- return pExceptionHandler != NULL &&
- pSVData->mpApp != NULL &&
- pSVData->mpDefInst != NULL;
+ return pExceptionHandler != nullptr &&
+ pSVData->mpApp != nullptr &&
+ pSVData->mpDefInst != nullptr;
}
bool InitVCL()