diff options
author | Kai Koehne <[email protected]> | 2010-02-08 11:07:18 +0100 |
---|---|---|
committer | Kai Koehne <[email protected]> | 2010-02-08 11:13:55 +0100 |
commit | 6c4b9ba2276276b1bd9c5bccaababa27bd401847 (patch) | |
tree | d58cb00bf89df3d686749a5a9de770ad11642594 /src/plugins/debugger/watchhandler.cpp | |
parent | 999c73ad9daf23a4883f76b87d0aaf43d9032629 (diff) |
Reapply unconnected changes from reverted commit
Only revert stuff that is linked to fast string concat.
Diffstat (limited to 'src/plugins/debugger/watchhandler.cpp')
-rw-r--r-- | src/plugins/debugger/watchhandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/watchhandler.cpp b/src/plugins/debugger/watchhandler.cpp index 83d4fd48137..35a9545c7b8 100644 --- a/src/plugins/debugger/watchhandler.cpp +++ b/src/plugins/debugger/watchhandler.cpp @@ -804,7 +804,7 @@ QVariant WatchModel::data(const QModelIndex &idx, int role) const switch (idx.column()) { case 0: if (data.name == QLatin1String("*") && item->parent) - return QLatin1Char('*') + item->parent->name; + return QVariant(QLatin1Char('*') + item->parent->name); return data.name; case 1: { int format = m_handler->m_individualFormats.value(data.iname, -1); |