diff options
author | hjk <[email protected]> | 2010-01-07 13:12:33 +0100 |
---|---|---|
committer | hjk <[email protected]> | 2010-01-07 14:41:37 +0100 |
commit | 976b7b9e30e87bfa36a9978061d7b44fbf6dcd49 (patch) | |
tree | 0969145063814be073b36e0532a3101503fd4f36 /src/plugins/debugger/watchhandler.cpp | |
parent | 6634fe47574223b566027505b66d839f7d4c1f33 (diff) |
debugger: second attempt to write out pointer names
Diffstat (limited to 'src/plugins/debugger/watchhandler.cpp')
-rw-r--r-- | src/plugins/debugger/watchhandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/debugger/watchhandler.cpp b/src/plugins/debugger/watchhandler.cpp index 229a49c0eef..91d87d8c7e7 100644 --- a/src/plugins/debugger/watchhandler.cpp +++ b/src/plugins/debugger/watchhandler.cpp @@ -783,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); |