COMMON: Use nullptr instead of NULL or 0 where appropriate

This commit is contained in:
Bastien Bouclet 2018-04-05 20:25:28 +02:00
parent 82296866b4
commit 955e18c648
49 changed files with 357 additions and 357 deletions

View file

@ -74,7 +74,7 @@ bool XMLParser::loadStream(SeekableReadStream *stream) {
void XMLParser::close() {
delete _stream;
_stream = 0;
_stream = nullptr;
}
bool XMLParser::parserError(const String &errStr) {
@ -299,13 +299,13 @@ bool XMLParser::closeKey() {
}
bool XMLParser::parse() {
if (_stream == 0)
if (_stream == nullptr)
return false;
// Make sure we are at the start of the stream.
_stream->seek(0, SEEK_SET);
if (_XMLkeys == 0)
if (_XMLkeys == nullptr)
buildLayout();
while (!_activeKey.empty())
@ -378,7 +378,7 @@ bool XMLParser::parse() {
node->ignore = false;
node->header = activeHeader;
node->depth = _activeKey.size();
node->layout = 0;
node->layout = nullptr;
_activeKey.push(node);
}