QmlJS: Disable unhelpful warning.

This commit is contained in:
Christian Kamm
2011-04-26 14:42:33 +02:00
parent be3768328e
commit a03de5f717

View File

@@ -2165,7 +2165,8 @@ QmlObjectValue *CppQmlTypes::getOrCreateForPackage(const QString &package, const
// first get the cpp object value // first get the cpp object value
QmlObjectValue *cppObject = typeByCppName(cppName); QmlObjectValue *cppObject = typeByCppName(cppName);
if (!cppObject) { if (!cppObject) {
qWarning() << "QML type system: could not find '" << cppName << "'"; // ### disabled for now, should be communicated to the user somehow.
//qWarning() << "QML type system: could not find '" << cppName << "'";
return 0; return 0;
} }