diff --git a/src/libs/qmljs/qmljsinterpreter.cpp b/src/libs/qmljs/qmljsinterpreter.cpp
index 2f2d6eafafe7050cb94eb2e357d072534b0c9f10..a060fd1c0b69e23038a4371a8676df07b9406d50 100644
--- a/src/libs/qmljs/qmljsinterpreter.cpp
+++ b/src/libs/qmljs/qmljsinterpreter.cpp
@@ -2165,7 +2165,8 @@ QmlObjectValue *CppQmlTypes::getOrCreateForPackage(const QString &package, const
     // first get the cpp object value
     QmlObjectValue *cppObject = typeByCppName(cppName);
     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;
     }