forked from qt-creator/qt-creator
Android M: Support new logcat output
Change-Id: I64ae6493b45b3f1cac82e7f5e1ae77ec3b910bc9 Task-number: QTCREATORBUG-14534 Reviewed-by: BogDan Vatra <bogdan@kde.org> Reviewed-by: Daniel Teske <daniel.teske@theqtcompany.com>
This commit is contained in:
@@ -171,15 +171,15 @@ AndroidDebugSupport::AndroidDebugSupport(AndroidRunConfiguration *runConfig,
|
||||
});
|
||||
|
||||
connect(m_runner, &AndroidRunner::remoteErrorOutput,
|
||||
[this](const QByteArray &output) {
|
||||
[this](const QString &output) {
|
||||
QTC_ASSERT(m_runControl, return);
|
||||
m_runControl->showMessage(QString::fromUtf8(output), AppError);
|
||||
m_runControl->showMessage(output, AppError);
|
||||
});
|
||||
|
||||
connect(m_runner, &AndroidRunner::remoteOutput,
|
||||
[this](const QByteArray &output) {
|
||||
[this](const QString &output) {
|
||||
QTC_ASSERT(m_runControl, return);
|
||||
m_runControl->showMessage(QString::fromUtf8(output), AppOutput);
|
||||
m_runControl->showMessage(output, AppOutput);
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user