summaryrefslogtreecommitdiffstats
path: root/qmake/propertyprinter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'qmake/propertyprinter.cpp')
-rw-r--r--qmake/propertyprinter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qmake/propertyprinter.cpp b/qmake/propertyprinter.cpp
index 6ba2f76363..4ba56327e6 100644
--- a/qmake/propertyprinter.cpp
+++ b/qmake/propertyprinter.cpp
@@ -10,7 +10,7 @@ QT_BEGIN_NAMESPACE
void qmakePropertyPrinter(const QList<QPair<QString, QString>> &values)
{
// Assume single property request
- if (values.count() == 1) {
+ if (values.size() == 1) {
std::cout << qPrintable(values.at(0).second) << std::endl;
return;
}