diff options
author | hjk <hjk@qt.io> | 2019-07-31 17:21:41 +0200 |
---|---|---|
committer | hjk <hjk@qt.io> | 2019-08-01 13:20:26 +0000 |
commit | 2e14df7561ee10c7a408bd3ebb4944016ecdd1f4 (patch) | |
tree | 4a220241720e8a307fb96e98941656cf7b9f940d /src/plugins/winrt | |
parent | 630385751a806b64d41295ee50957e2a9138a193 (diff) | |
download | qt-creator-2e14df7561ee10c7a408bd3ebb4944016ecdd1f4.tar.gz |
Some clang-tidy -use-modernize-nullptr
Change-Id: I1bed5e85a5b7948d08502a72a10f80baa075c204
Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
Diffstat (limited to 'src/plugins/winrt')
-rw-r--r-- | src/plugins/winrt/winrtdevice.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/winrt/winrtdevice.cpp b/src/plugins/winrt/winrtdevice.cpp index c49ef19d95..f537aa5f57 100644 --- a/src/plugins/winrt/winrtdevice.cpp +++ b/src/plugins/winrt/winrtdevice.cpp @@ -359,10 +359,10 @@ void WinRtDeviceFactory::parseRunnerOutput(const QByteArray &output) const << internalName << ")"; } } - QString message = tr("Found %n Windows Runtime devices.", 0, numFound); + QString message = tr("Found %n Windows Runtime devices.", nullptr, numFound); if (const int numNew = numFound - numSkipped) { message += QLatin1Char(' '); - message += tr("%n of them are new.", 0, numNew); + message += tr("%n of them are new.", nullptr, numNew); } MessageManager::write(message); } |