forked from qt-creator/qt-creator
sdktool: Fix MSVC warnings about comparison (!<int> == number).
Change-Id: I74be70ed1693160acab5c4be5da09d004bf0801c Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
This commit is contained in:
committed by
Tobias Hunger
parent
154f6c859e
commit
6dad4586c6
@@ -113,7 +113,7 @@ bool AddKeysOperation::test() const
|
||||
data.append(KeyValuePair(QLatin1String("newsub/1/2.1/3/qbytearray"), QString::fromLatin1("QByteArray:test array.")));
|
||||
|
||||
QVariantMap result = addKeys(testMap, data);
|
||||
if (!result.count() == 8)
|
||||
if (result.count() != 8)
|
||||
return false;
|
||||
|
||||
// subkeys:
|
||||
|
||||
Reference in New Issue
Block a user