Use nullptr instead of 0

This commit is contained in:
Luis Ángel San Martín
2019-05-31 21:00:19 +02:00
parent bb334cfd50
commit 268bebbddd
81 changed files with 113 additions and 113 deletions

View File

@ -2,7 +2,7 @@
#include <QCoreApplication>
PackageManager::PackageManager()
: _7z(0)
: _7z(nullptr)
{
}
@ -41,7 +41,7 @@ void PackageManager::extractPackage(const QString &packagePath, const QString &d
void PackageManager::cancel()
{
if (_7z != 0) {
if (_7z != nullptr) {
_7z->disconnect();
_7z->kill();
if (creating) {