summaryrefslogtreecommitdiff
path: root/tests/plugins
diff options
context:
space:
mode:
authorKevin Funk <kfunk@kde.org>2018-01-31 14:35:47 +0100
committerKevin Funk <kevin.funk@kdab.com>2018-02-05 13:14:53 +0000
commit5c4c0cb58e29944bb7b01105a1f6a7a8a2d90369 (patch)
tree767bea03ffa6f2a26d57ee6acbe42e6766576575 /tests/plugins
parentb4807a11e816feaa3b541b4e4b02f77c1fafbf48 (diff)
downloadqtlocation-5c4c0cb58e29944bb7b01105a1f6a7a8a2d90369.tar.gz
Replace Q_NULLPTR with nullptr
Change-Id: Icbebfaae93cc5827d80ef09323ec82868789838a Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to 'tests/plugins')
-rw-r--r--tests/plugins/declarativetestplugin/testhelper.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/plugins/declarativetestplugin/testhelper.h b/tests/plugins/declarativetestplugin/testhelper.h
index 83cb4721..164d183b 100644
--- a/tests/plugins/declarativetestplugin/testhelper.h
+++ b/tests/plugins/declarativetestplugin/testhelper.h
@@ -41,7 +41,7 @@ class TestHelper: public QObject
{
Q_OBJECT
public:
- TestHelper(QObject *parent = Q_NULLPTR):QObject(parent){}
+ TestHelper(QObject *parent = nullptr):QObject(parent){}
Q_INVOKABLE bool waitForPolished(QQuickItem *item, int timeout = 10000) const
{
QSignalSpy spy(item->window(), &QQuickWindow::afterAnimating);