diff options
author | Kevin Funk <kfunk@kde.org> | 2017-09-24 23:55:01 +0200 |
---|---|---|
committer | Kevin Funk <kevin.funk@kdab.com> | 2017-09-27 08:05:53 +0000 |
commit | 1e2914d4537eb5acaede9b81d6edac12e99e4b1f (patch) | |
tree | 08c755d33311dc245f23da93ff3a7df471f30405 /src/scripttools/debugging | |
parent | c9274edfeda72a3809bd17edec91f05c094bcca1 (diff) | |
download | qtscript-1e2914d4537eb5acaede9b81d6edac12e99e4b1f.tar.gz |
Replace Q_NULLPTR with nullptr
Change-Id: I9b2a6ce4a0278520fd95042a1b2736cc5a0d4be6
Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to 'src/scripttools/debugging')
-rw-r--r-- | src/scripttools/debugging/qscriptenginedebugger.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/scripttools/debugging/qscriptenginedebugger.h b/src/scripttools/debugging/qscriptenginedebugger.h index a56a833..a20aba9 100644 --- a/src/scripttools/debugging/qscriptenginedebugger.h +++ b/src/scripttools/debugging/qscriptenginedebugger.h @@ -89,7 +89,7 @@ public: SuspendedState }; - explicit QScriptEngineDebugger(QObject *parent = Q_NULLPTR); + explicit QScriptEngineDebugger(QObject *parent = nullptr); ~QScriptEngineDebugger(); void attachTo(QScriptEngine *engine); @@ -101,8 +101,8 @@ public: #ifndef QT_NO_MAINWINDOW QMainWindow *standardWindow() const; #endif - QToolBar *createStandardToolBar(QWidget *parent = Q_NULLPTR); - QMenu *createStandardMenu(QWidget *parent = Q_NULLPTR); + QToolBar *createStandardToolBar(QWidget *parent = nullptr); + QMenu *createStandardMenu(QWidget *parent = nullptr); QWidget *widget(DebuggerWidget widget) const; QAction *action(DebuggerAction action) const; |