diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2014-11-10 08:13:31 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2014-11-10 08:13:31 +0100 |
commit | 8c3bb9d3799f9ddd62ce2dc2517a2054bfc9a437 (patch) | |
tree | 2ae1d11c9fd438506222c3d5a1caa2b3788839ca /vcl | |
parent | ea48707a9d13fe94bfe4947aa28d755d19813456 (diff) |
WaE implicit conversion of NULL constant to 'bool' [-Wnull-conversion]
Change-Id: I8f208d6c87275aa4a169c7c6ed219200617c5669
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/opengl/gdiimpl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/opengl/gdiimpl.cxx b/vcl/opengl/gdiimpl.cxx index 7094727c25d1..e62e32e7299d 100644 --- a/vcl/opengl/gdiimpl.cxx +++ b/vcl/opengl/gdiimpl.cxx @@ -753,7 +753,7 @@ bool OpenGLSalGraphicsImpl::drawPolyPolygonBezier( const SalPoint* const* /*pPtAry*/, const sal_uInt8* const* /*pFlgAry*/ ) { - return NULL; + return false; } // CopyArea --> No RasterOp, but ClipRegion |