debugger: go back to explicitly named pointers

This commit is contained in:
hjk
2010-01-06 16:38:10 +01:00
parent d3d4a4d65b
commit 270defaf59
2 changed files with 4 additions and 3 deletions

View File

@@ -300,6 +300,7 @@ QString WatchData::toToolTip() const
QString res;
QTextStream str(&res);
str << "<html><body><table>";
formatToolTipRow(str, WatchHandler::tr("Name"), name);
formatToolTipRow(str, WatchHandler::tr("Expression"), exp);
formatToolTipRow(str, WatchHandler::tr("Type"), typeToolTip(*this));
QString val = value;
@@ -782,8 +783,8 @@ QVariant WatchModel::data(const QModelIndex &idx, int role) const
case Qt::DisplayRole: {
switch (idx.column()) {
case 0:
if (data.name == QLatin1String("*") && item->parent)
return QLatin1String("*") + item->parent->name;
//if (data.name == QLatin1String("*") && item->parent)
// return QLatin1String("*") + item->parent->name;
return data.name;
case 1: {
int format = m_handler->m_individualFormats.value(data.iname, -1);