diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-10-06 08:44:33 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-10-06 08:44:33 +0300 |
commit | 0096426086e52b962ba53aed2132c2f4d0942aed (patch) | |
tree | c688b3c038ae8f450e7098c46666c285f39b8667 /vcl/source | |
parent | a8c9f6bc8580d5d4c68ded8a0119704de9e6c1a5 (diff) |
WaE: implicit conversion of NULL constant to 'nullptr_t'
Change-Id: I93b22ce863294312d323184afdfe46f5a448375e
Diffstat (limited to 'vcl/source')
-rw-r--r-- | vcl/source/gdi/impfont.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/gdi/impfont.cxx b/vcl/source/gdi/impfont.cxx index e4e6fc809230..1bd7dcd0e4cb 100644 --- a/vcl/source/gdi/impfont.cxx +++ b/vcl/source/gdi/impfont.cxx @@ -563,7 +563,7 @@ int FontCharMap::CountCharsInRange( sal_UCS4 cMin, sal_UCS4 cMax ) const void FontCharMap::Reset( const ImplFontCharMapPtr pNewMap ) { - if( pNewMap == NULL ) + if( !pNewMap ) { mpImplFontCharMap = ImplFontCharMap::GetDefaultMap(); } |