forked from qt-creator/qt-creator
Debugger: Add signals to DebuggerItemManager
Change-Id: Icbd14a683d1a5ec53aa2d2337d43a86c26bccac9 Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
@@ -140,6 +140,14 @@ QStringList DebuggerItem::abiNames() const
|
||||
return list;
|
||||
}
|
||||
|
||||
bool DebuggerItem::operator==(const DebuggerItem &other) const
|
||||
{
|
||||
return m_id == other.m_id
|
||||
&& m_isAutoDetected == other.m_isAutoDetected
|
||||
&& m_command == other.m_command
|
||||
&& m_abis == other.m_abis;
|
||||
}
|
||||
|
||||
QVariantMap DebuggerItem::toMap() const
|
||||
{
|
||||
QVariantMap data;
|
||||
|
||||
Reference in New Issue
Block a user