debugger: fix editor tooltips for new dumpers

This commit is contained in:
hjk
2010-01-08 18:16:16 +01:00
parent 81abc2ce7a
commit 9052bd279f
3 changed files with 46 additions and 44 deletions

View File

@@ -1517,10 +1517,10 @@ WatchModel *WatchHandler::modelForIName(const QByteArray &iname) const
{
if (iname.startsWith("local"))
return m_locals;
if (iname.startsWith("watch"))
return m_watchers;
if (iname.startsWith("tooltip"))
return m_tooltips;
if (iname.startsWith("watch"))
return m_watchers;
QTC_ASSERT(false, qDebug() << "INAME: " << iname);
return 0;
}