diff options
author | Noel Grandin <noel@peralex.com> | 2015-08-20 10:28:49 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-08-20 10:28:49 +0200 |
commit | c06108b880e144e5ad56e35f842ad15f05b6e899 (patch) | |
tree | 9d6c1f559932345b5e189e3362b8c0f0aa9cdedd /l10ntools | |
parent | 5a58e809fceada72cecc389588bcd792eb3d8105 (diff) |
implicit conversion of NULL constant to 'nullptr_t'
Change-Id: I98f8df3f27fbd520f0bfbbb39c0e3cc5fa892b0d
Diffstat (limited to 'l10ntools')
-rw-r--r-- | l10ntools/source/xmlparse.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/l10ntools/source/xmlparse.cxx b/l10ntools/source/xmlparse.cxx index 3d2292026500..0d1d9065493a 100644 --- a/l10ntools/source/xmlparse.cxx +++ b/l10ntools/source/xmlparse.cxx @@ -302,7 +302,7 @@ void XMLFile::Print( XMLNode *pCur, sal_uInt16 nLevel ) } XMLFile::~XMLFile() { - if( m_pXMLStrings != NULL ) + if( m_pXMLStrings ) { XMLHashMap::iterator pos = m_pXMLStrings->begin(); for( ; pos != m_pXMLStrings->end() ; ++pos ) |