replace all instances of NULL with nullptr

This commit is contained in:
Rasmus Karlsson
2017-06-11 09:37:30 +02:00
parent 1c6ff37e76
commit 9cd70877a5
15 changed files with 47 additions and 47 deletions
+2 -2
View File
@@ -63,7 +63,7 @@ public:
int getWidth() const
{
if (_currentPixmap == NULL) {
if (_currentPixmap == nullptr) {
return 16;
}
return _currentPixmap->width();
@@ -71,7 +71,7 @@ public:
int getHeight() const
{
if (_currentPixmap == NULL) {
if (_currentPixmap == nullptr) {
return 16;
}
return _currentPixmap->height();