From 565c42a30e0d9203a5989549c1ccd7e8e464521d Mon Sep 17 00:00:00 2001 From: Kai Koehne Date: Wed, 20 Apr 2011 15:52:44 +0200 Subject: [PATCH] QmlDebug: Fix debugging for mixed projects on MinGW We've so far missed the 'QDeclarativeDebug: ' messages, because they were arriving on an unexpected channel. Task-number: QTCREATORBUG-4630 Reviewed-by: Friedemann Kleint --- src/plugins/debugger/qml/qmlcppengine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/debugger/qml/qmlcppengine.cpp b/src/plugins/debugger/qml/qmlcppengine.cpp index 56950b7e704..c8ab05ec0de 100644 --- a/src/plugins/debugger/qml/qmlcppengine.cpp +++ b/src/plugins/debugger/qml/qmlcppengine.cpp @@ -665,7 +665,7 @@ void QmlCppEngine::handleRemoteSetupFailed(const QString &message) void QmlCppEngine::showMessage(const QString &msg, int channel, int timeout) const { - if (channel == AppOutput || channel == AppError) { + if (channel == AppOutput || channel == AppError || channel == AppStuff) { // message is from CppEngine, allow qml engine to process d->m_qmlEngine->filterApplicationMessage(msg, channel); }