mirror of
https://github.com/YACReader/yacreader
synced 2025-07-17 20:44:32 -04:00
Use nullptr instead of 0
This commit is contained in:
@ -952,7 +952,7 @@ void MainWindowViewer::saveImage()
|
||||
QFileInfo fi(pathFile);
|
||||
currentDirectoryImgDest = fi.absolutePath();
|
||||
const QPixmap *p = viewer->pixmap();
|
||||
if (p != NULL)
|
||||
if (p != nullptr)
|
||||
p->save(pathFile);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user