summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-10-06 08:44:33 +0300
committerTor Lillqvist <tml@collabora.com>2014-10-06 08:44:33 +0300
commit0096426086e52b962ba53aed2132c2f4d0942aed (patch)
treec688b3c038ae8f450e7098c46666c285f39b8667 /vcl
parenta8c9f6bc8580d5d4c68ded8a0119704de9e6c1a5 (diff)
WaE: implicit conversion of NULL constant to 'nullptr_t'
Change-Id: I93b22ce863294312d323184afdfe46f5a448375e
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/gdi/impfont.cxx2
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();
}