diff --git a/share/qtcreator/gdbmacros/dumper.py b/share/qtcreator/gdbmacros/dumper.py index 072ba5b590a0f8f1360e50a69f8c0e42a023d068..a7ddeafcc9aba3836cdee2be6eab02d5162b9f07 100644 --- a/share/qtcreator/gdbmacros/dumper.py +++ b/share/qtcreator/gdbmacros/dumper.py @@ -410,7 +410,7 @@ class FrameCommand(gdb.Command): d.beginHash() d.put('iname="watch.%s",' % name) d.put('name="%s",' % exp) - d.put('exp="%s"' % exp) + d.put('exp="%s",' % exp) try: list = eval(exp) #warn("EVAL: LIST: %s" % list) @@ -437,7 +437,7 @@ class FrameCommand(gdb.Command): d.beginHash() d.put('iname="watch.%s",' % name) d.put('name="%s",' % exp) - d.put('exp="%s"' % exp) + d.put('exp="%s",' % exp) handled = False if exp == "<Edit>": d.put(',value=" ",') @@ -445,7 +445,7 @@ class FrameCommand(gdb.Command): else: try: value = parseAndEvaluate(exp) - item = Item(value, "watch", name, name) + item = Item(value, "watch", None, None) d.safePutItemHelper(item) except RuntimeError: d.put(',value="<invalid>",')