aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/debuggerkitinformation.cpp
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@qt.io>2016-11-09 14:48:08 +0100
committerChristian Stenger <christian.stenger@qt.io>2016-11-10 05:46:06 +0000
commitbeec36c7d379f005ed3005ae4f7f0e5e46006d5d (patch)
treefaf45b23160856c38a05df6c24c6f6bd265003bd /src/plugins/debugger/debuggerkitinformation.cpp
parentefd7a141fae3fdca1d8848444d03a4685a99ffb9 (diff)
Debugger: Allow debuggerruncontrol creation with warnings
Change-Id: I50092cb99c24ab31fafb1b5ce3c0b371adc42f38 Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/debugger/debuggerkitinformation.cpp')
-rw-r--r--src/plugins/debugger/debuggerkitinformation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/debuggerkitinformation.cpp b/src/plugins/debugger/debuggerkitinformation.cpp
index da20b9170c..6aaaa4074c 100644
--- a/src/plugins/debugger/debuggerkitinformation.cpp
+++ b/src/plugins/debugger/debuggerkitinformation.cpp
@@ -294,7 +294,7 @@ QList<Task> DebuggerKitInformation::validateDebugger(const Kit *k)
if (errors & DebuggerDoesNotMatch) {
const QString message = tr("The ABI of the selected debugger does not "
"match the toolchain ABI.");
- result << Task(Task::Error, message, FileName(), -1, id);
+ result << Task(Task::Warning, message, FileName(), -1, id);
}
return result;
}