aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/qmljs/qmljsinterpreter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/qmljs/qmljsinterpreter.cpp')
-rw-r--r--src/libs/qmljs/qmljsinterpreter.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libs/qmljs/qmljsinterpreter.cpp b/src/libs/qmljs/qmljsinterpreter.cpp
index 1e00987a2f..51388b6c99 100644
--- a/src/libs/qmljs/qmljsinterpreter.cpp
+++ b/src/libs/qmljs/qmljsinterpreter.cpp
@@ -2155,7 +2155,8 @@ QmlObjectValue *CppQmlTypes::getOrCreate(const QString &package, const QString &
// 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;
}