We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 16d1870 + 0d39ca9 commit ddc0886Copy full SHA for ddc0886
jsonlistmodel.cpp
@@ -114,7 +114,7 @@ int JsonListModel::addItem(const QJSValue &item)
114
id = item.toString();
115
} else if (item.isObject()) {
116
if (!item.hasProperty(m_idAttribute)) {
117
- qWarning("Object does not have a %s property", qUtf8Printable(m_idAttribute));
+ qWarning("Object does not have a %s property", qPrintable(m_idAttribute));
118
return row;
119
}
120
id = item.property(m_idAttribute).toString();
0 commit comments