diff options
author | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2021-06-03 15:40:10 +0200 |
---|---|---|
committer | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2021-06-10 18:28:52 +0200 |
commit | 4a5a1ab7849bba6aed87132296c79ca9dba6d113 (patch) | |
tree | 399222737f1127c3cc28dd6331cf4e2da3d2cd22 /src/core/api/qwebengineprofile.h | |
parent | f820e8f1993ca2a3e6808467cabca82e464f36e7 (diff) | |
download | qtwebengine-4a5a1ab7849bba6aed87132296c79ca9dba6d113.tar.gz |
Replace Q_NULLPTR and pointer 0 with nullptr
Pick-to: 6.2
Change-Id: Ifd7acf49b22be1532ba98371982af4b14f08e6fc
Reviewed-by: Jüri Valdmann <juri.valdmann@qt.io>
Diffstat (limited to 'src/core/api/qwebengineprofile.h')
-rw-r--r-- | src/core/api/qwebengineprofile.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/api/qwebengineprofile.h b/src/core/api/qwebengineprofile.h index b2088cf5d..a483f041e 100644 --- a/src/core/api/qwebengineprofile.h +++ b/src/core/api/qwebengineprofile.h @@ -66,8 +66,8 @@ class QWebEngineUrlSchemeHandler; class Q_WEBENGINECORE_EXPORT QWebEngineProfile : public QObject { Q_OBJECT public: - explicit QWebEngineProfile(QObject *parent = Q_NULLPTR); - explicit QWebEngineProfile(const QString &name, QObject *parent = Q_NULLPTR); + explicit QWebEngineProfile(QObject *parent = nullptr); + explicit QWebEngineProfile(const QString &name, QObject *parent = nullptr); virtual ~QWebEngineProfile(); enum HttpCacheType { @@ -153,7 +153,7 @@ Q_SIGNALS: private: Q_DISABLE_COPY(QWebEngineProfile) Q_DECLARE_PRIVATE(QWebEngineProfile) - QWebEngineProfile(QWebEngineProfilePrivate *, QObject *parent = Q_NULLPTR); + QWebEngineProfile(QWebEngineProfilePrivate *, QObject *parent = nullptr); friend class QWebEnginePage; friend class QWebEnginePagePrivate; |