diff options
-rw-r--r-- | vcl/source/app/svmain.cxx | 6 |
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() |