summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@theqtcompany.com>2016-06-03 12:04:28 +0200
committerChristian Kandeler <christian.kandeler@theqtcompany.com>2016-06-03 10:36:22 +0000
commitb50e9e546f06162d25887d7a31021474abac1a52 (patch)
tree3076f5480c1a990d11fed443205278648ff99019
parent23f873ccbca7908b48fb161ffc8e8c7311bbc172 (diff)
downloadqt-creator-b50e9e546f06162d25887d7a31021474abac1a52.tar.gz
QbsProjectManager: Do not pop up the message pane.
Only messages of type "info" appear there these days. They should not force the message pane to open. Change-Id: I2e0c01574eecffb7b9df41594df8abb6fd722397 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
-rw-r--r--src/plugins/qbsprojectmanager/qbslogsink.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/qbsprojectmanager/qbslogsink.cpp b/src/plugins/qbsprojectmanager/qbslogsink.cpp
index 2b28dd1c20..326076e961 100644
--- a/src/plugins/qbsprojectmanager/qbslogsink.cpp
+++ b/src/plugins/qbsprojectmanager/qbslogsink.cpp
@@ -60,7 +60,7 @@ void QbsLogSink::sendMessages()
}
foreach (const QString &msg, toSend)
- Core::MessageManager::write(msg);
+ Core::MessageManager::write(msg, Core::MessageManager::Silent);
}
void QbsLogSink::doPrintWarning(const qbs::ErrorInfo &warning)