diff options
author | hjk <hjk@theqtcompany.com> | 2015-09-07 12:13:03 +0200 |
---|---|---|
committer | hjk <hjk@theqtcompany.com> | 2015-09-07 10:36:52 +0000 |
commit | b0e7368d5859030cadd5fcdf9739a22bde6f29d2 (patch) | |
tree | f757672de896142dd26d093c943fe32ca01ef071 /src/plugins/debugger/debuggeritem.h | |
parent | b932a61d772d74e571f58fbd79160226c07b0ad6 (diff) | |
download | qt-creator-b0e7368d5859030cadd5fcdf9739a22bde6f29d2.tar.gz |
Debugger: Mark bad debuggger entries with an error icon
Change-Id: If3f7ab4ea015be6f580f748f9d0ee19c608a0239
Reviewed-by: Niels Weber <niels.weber@theqtcompany.com>
Diffstat (limited to 'src/plugins/debugger/debuggeritem.h')
-rw-r--r-- | src/plugins/debugger/debuggeritem.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/plugins/debugger/debuggeritem.h b/src/plugins/debugger/debuggeritem.h index 6ffb2e7873..8a1748a7b5 100644 --- a/src/plugins/debugger/debuggeritem.h +++ b/src/plugins/debugger/debuggeritem.h @@ -98,6 +98,9 @@ public: QStringList abiNames() const; + bool isGood() const; + QString validityMessage() const; + bool operator==(const DebuggerItem &other) const; bool operator!=(const DebuggerItem &other) const { return !operator==(other); } |