diff options
author | Friedemann Kleint <[email protected]> | 2011-02-25 09:34:31 +0100 |
---|---|---|
committer | Friedemann Kleint <[email protected]> | 2011-02-25 09:34:31 +0100 |
commit | 047ee5522c203276e0c6a53acdd1862277fb8a7c (patch) | |
tree | 768199d9840283ba425568bc0abdee4db9578b33 /src/plugins/debugger/debuggerrunner.h | |
parent | 5d615f7fbf0788670b15988971983d096e2a148d (diff) |
Debugger: Improve configuration error reporting.
- Make showWarningWithOptions actually show the details.
- Show errors from multiple engines as separate messages.
- Remove 'enabled' option from CDB (handled by toolchain config now).
- Show ABI as tooltip in debbugger toolchain chooser.
Diffstat (limited to 'src/plugins/debugger/debuggerrunner.h')
-rw-r--r-- | src/plugins/debugger/debuggerrunner.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/plugins/debugger/debuggerrunner.h b/src/plugins/debugger/debuggerrunner.h index 0a864a1ad67..70991889ff7 100644 --- a/src/plugins/debugger/debuggerrunner.h +++ b/src/plugins/debugger/debuggerrunner.h @@ -42,6 +42,7 @@ #include <QtCore/QScopedPointer> #include <QtCore/QPair> +#include <QtCore/QStringList> namespace Utils { class Environment; @@ -63,8 +64,10 @@ class DEBUGGER_EXPORT ConfigurationCheck public: ConfigurationCheck(); operator bool() const; + QString errorDetailsString() const; QString errorMessage; + QStringList errorDetails; QString settingsCategory; QString settingsPage; QPair<DebuggerEngineType, DebuggerEngineType> masterSlaveEngineTypes; |