diff options
Diffstat (limited to 'autotests/kconfigloadertest.cpp')
-rw-r--r-- | autotests/kconfigloadertest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/autotests/kconfigloadertest.cpp b/autotests/kconfigloadertest.cpp index d52f5cbf..ef3ac30e 100644 --- a/autotests/kconfigloadertest.cpp +++ b/autotests/kconfigloadertest.cpp @@ -30,11 +30,11 @@ Q_DECLARE_METATYPE(QList<int>) #define GET_CONFIG_ITEM_VALUE(type, configName) \ KConfigSkeletonItem* item = cl->findItem(TEST_NAME, configName); \ /* Check if we got back a valid item. */ \ - QVERIFY(item != Q_NULLPTR); \ + QVERIFY(item != nullptr); \ /* Cast the item to the given type. */ \ type typeItem = dynamic_cast<type>(item); \ /* Make sure the cast was successful. */ \ - QVERIFY(typeItem != Q_NULLPTR); + QVERIFY(typeItem != nullptr); void ConfigLoaderTest::init() { |