diff options
author | hjk <[email protected]> | 2010-01-06 16:38:10 +0100 |
---|---|---|
committer | hjk <[email protected]> | 2010-01-06 16:38:10 +0100 |
commit | 270defaf59b4dcc39476cf6de816bd27833c1775 (patch) | |
tree | 7d6d3694e0015fbe56771548a379ae07e3cefc9c /src/plugins/debugger/watchhandler.cpp | |
parent | d3d4a4d65b45e941164946d097e8e3ace967e58d (diff) |
debugger: go back to explicitly named pointers
Diffstat (limited to 'src/plugins/debugger/watchhandler.cpp')
-rw-r--r-- | src/plugins/debugger/watchhandler.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/plugins/debugger/watchhandler.cpp b/src/plugins/debugger/watchhandler.cpp index ae12376acb1..6c0b721aac7 100644 --- a/src/plugins/debugger/watchhandler.cpp +++ b/src/plugins/debugger/watchhandler.cpp @@ -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); |