diff options
author | hjk <qtc-committer@nokia.com> | 2008-12-05 18:44:09 +0100 |
---|---|---|
committer | hjk <qtc-committer@nokia.com> | 2008-12-05 18:44:09 +0100 |
commit | 0d46571eb3b4777abde3921d763551a917955017 (patch) | |
tree | fd9e0da1635d0af958b156a674256327dd88f4d3 /bin | |
parent | f89efc23e093c5c6c4ae7d7e82f364e066b9b211 (diff) | |
download | qt-creator-0d46571eb3b4777abde3921d763551a917955017.tar.gz |
fix QSet custom dumper for namespaced Qt
Diffstat (limited to 'bin')
-rw-r--r-- | bin/gdbmacros/gdbmacros.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/gdbmacros/gdbmacros.cpp b/bin/gdbmacros/gdbmacros.cpp index 2043f65973..05488a8512 100644 --- a/bin/gdbmacros/gdbmacros.cpp +++ b/bin/gdbmacros/gdbmacros.cpp @@ -1869,8 +1869,8 @@ static void qDumpQSet(QDumper &d) d.beginHash(); P(d, "name", "[" << i << "]"); P(d, "type", d.innertype); - P(d, "exp", "(('QHashNode<" << d.innertype - << ",QHashDummyValue>'*)" + P(d, "exp", "(('"NS"QHashNode<" << d.innertype + << ","NS"QHashDummyValue>'*)" << static_cast<const void*>(node) << ")->key" ); d.endHash(); |