From 880124088190f65faf88d5fc928d3b281a6c3ee6 Mon Sep 17 00:00:00 2001 From: Tobias Hunger Date: Mon, 19 Feb 2018 12:21:23 +0100 Subject: [PATCH] Qt: Use nullptr Change-Id: I6f7f2b5c5d33e64d5630104521dd022002347075 Reviewed-by: hjk --- src/plugins/qtsupport/baseqtversion.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/plugins/qtsupport/baseqtversion.h b/src/plugins/qtsupport/baseqtversion.h index e71f9b3a071..152415a8dfc 100644 --- a/src/plugins/qtsupport/baseqtversion.h +++ b/src/plugins/qtsupport/baseqtversion.h @@ -189,10 +189,10 @@ public: /// warnings and finally info items. QList reportIssues(const QString &proFile, const QString &buildDir) const; - static bool isQmlDebuggingSupported(ProjectExplorer::Kit *k, QString *reason = 0); - bool isQmlDebuggingSupported(QString *reason = 0) const; - static bool isQtQuickCompilerSupported(ProjectExplorer::Kit *k, QString *reason = 0); - bool isQtQuickCompilerSupported(QString *reason = 0) const; + static bool isQmlDebuggingSupported(ProjectExplorer::Kit *k, QString *reason = nullptr); + bool isQmlDebuggingSupported(QString *reason = nullptr) const; + static bool isQtQuickCompilerSupported(ProjectExplorer::Kit *k, QString *reason = nullptr); + bool isQtQuickCompilerSupported(QString *reason = nullptr) const; virtual QString qmlDumpTool(bool debugVersion) const;