From 91a97b288227ef863d327ab7aa0db1970114864e Mon Sep 17 00:00:00 2001 From: murata Date: Sun, 11 Aug 2019 17:18:37 +0900 Subject: [PATCH] api: Change NULL or 0 to nullptr --- src/api/QmlComponentInfo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/QmlComponentInfo.h b/src/api/QmlComponentInfo.h index a0d354e3a..d6be38f55 100644 --- a/src/api/QmlComponentInfo.h +++ b/src/api/QmlComponentInfo.h @@ -18,7 +18,7 @@ class QmlComponentInfo : public QObject Q_OBJECT public: - QmlComponentInfo(QString title, QUrl url, QUrl icon = QUrl(), QObject* parent = NULL); + QmlComponentInfo(QString title, QUrl url, QUrl icon = QUrl(), QObject* parent = nullptr); Q_PROPERTY(QString title READ title CONSTANT) ///< Title for page Q_PROPERTY(QUrl url READ url CONSTANT) ///< Qml source code -- 2.22.0