replace all instances of NULL with nullptr
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user