summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@digia.com>2013-06-14 10:59:23 +0200
committerTobias Hunger <tobias.hunger@digia.com>2013-06-14 11:00:32 +0200
commit4e559c3709e3d506a2e581e3ae3ed93995424c4e (patch)
treea9b43dc38330407a15dd67b57268b312a97e5860
parentb1679cbec9f3e84fea9cd1244ec1e5b972576c8e (diff)
downloadqt-creator-4e559c3709e3d506a2e581e3ae3ed93995424c4e.tar.gz
QmlDebuggingHelpers: Fix usage of flags.
The were renamed recently. Change-Id: Ic0dd24665c4db376514f886674317add8076a7c4 Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
-rw-r--r--src/plugins/qtsupport/debugginghelperbuildtask.cpp6
-rw-r--r--src/plugins/qtsupport/debugginghelperbuildtask.h2
2 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/qtsupport/debugginghelperbuildtask.cpp b/src/plugins/qtsupport/debugginghelperbuildtask.cpp
index e4fb269fab..5a53d2b3f5 100644
--- a/src/plugins/qtsupport/debugginghelperbuildtask.cpp
+++ b/src/plugins/qtsupport/debugginghelperbuildtask.cpp
@@ -58,8 +58,8 @@ DebuggingHelperBuildTask::DebuggingHelperBuildTask(const BaseQtVersion *version,
qRegisterMetaType<DebuggingHelperBuildTask::Tools>("DebuggingHelperBuildTask::Tools");
// Print result in application ouptut
- connect(this, SIGNAL(logOutput(QString,Core::MessageManager::PrintToOutputPaneFlag)),
- Core::MessageManager::instance(), SLOT(printToOutputPane(QString,Core::MessageManager::PrintToOutputPaneFlag)),
+ connect(this, SIGNAL(logOutput(QString,Core::MessageManager::PrintToOutputPaneFlags)),
+ Core::MessageManager::instance(), SLOT(printToOutputPane(QString,Core::MessageManager::PrintToOutputPaneFlags)),
Qt::QueuedConnection);
//
@@ -260,7 +260,7 @@ void DebuggingHelperBuildTask::log(const QString &output, const QString &error)
logEntry.append(error);
m_log.append(logEntry);
- Core::MessageManager::PrintToOutputPaneFlag flag = Core::MessageManager::Silent;
+ Core::MessageManager::PrintToOutputPaneFlags flag = Core::MessageManager::Silent;
if (m_showErrors && !error.isEmpty())
flag = Core::MessageManager::NoModeSwitch;
diff --git a/src/plugins/qtsupport/debugginghelperbuildtask.h b/src/plugins/qtsupport/debugginghelperbuildtask.h
index 15159384ff..6d8cd7efca 100644
--- a/src/plugins/qtsupport/debugginghelperbuildtask.h
+++ b/src/plugins/qtsupport/debugginghelperbuildtask.h
@@ -71,7 +71,7 @@ signals:
void finished(int qtVersionId, const QString &output, DebuggingHelperBuildTask::Tools tools);
// used internally
- void logOutput(const QString &output, Core::MessageManager::PrintToOutputPaneFlag flags);
+ void logOutput(const QString &output, Core::MessageManager::PrintToOutputPaneFlags flags);
void updateQtVersions(const Utils::FileName &qmakeCommand);
private: