diff options
Diffstat (limited to 'vcl/osx/salobj.cxx')
-rw-r--r-- | vcl/osx/salobj.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/osx/salobj.cxx b/vcl/osx/salobj.cxx index ca09d6c20ec6..a747ae323d6c 100644 --- a/vcl/osx/salobj.cxx +++ b/vcl/osx/salobj.cxx @@ -37,7 +37,7 @@ AquaSalObject::AquaSalObject( AquaSalFrame* pFrame, SystemWindowData* pWindowDat mnHeight( 20 ) { maSysData.nSize = sizeof( maSysData ); - maSysData.mpNSView = NULL; + maSysData.mpNSView = nullptr; maSysData.mbOpenGL = false; NSRect aInitFrame = { NSZeroPoint, { 20, 20 } }; @@ -50,7 +50,7 @@ AquaSalObject::AquaSalObject( AquaSalFrame* pFrame, SystemWindowData* pWindowDat if (pWindowData && pWindowData->bOpenGL) { maSysData.mbOpenGL = true; - NSOpenGLPixelFormat* pixFormat = NULL; + NSOpenGLPixelFormat* pixFormat = nullptr; if (pWindowData->bLegacy) { |