Debugger: Add signals to DebuggerItemManager

Change-Id: Icbd14a683d1a5ec53aa2d2337d43a86c26bccac9
Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
Tobias Hunger
2013-10-28 12:51:35 +01:00
committed by hjk
parent ab8999832a
commit 5e1e8eaae0
4 changed files with 32 additions and 4 deletions

View File

@@ -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;