debugger: new test case for char arrays

This commit is contained in:
hjk
2009-04-03 13:39:14 +02:00
parent b4b23ea981
commit 5266f16cc6
6 changed files with 30 additions and 6 deletions

View File

@@ -520,9 +520,11 @@ Qt::ItemFlags WatchHandler::flags(const QModelIndex &idx) const
const WatchData &data = m_displaySet.at(node);
if (data.isWatcher() && idx.column() == 0)
return editable; // watcher names are
if (idx.column() == 1)
return editable; // values are editable
return editable; // watcher names are editable
if (data.isWatcher() && idx.column() == 2)
return editable; // watcher types are
if (idx.column() == 1)
return editable; // locals and watcher values are editable
return notEditable;
}