summaryrefslogtreecommitdiff
path: root/solenv
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-05-26 12:48:13 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-05-27 11:01:15 +0200
commitd1c8970e09f6c871254640ea2d7e271dbda7f787 (patch)
tree40f0f38c3079510d9c95a20a736e82a42e3149e5 /solenv
parent489c46007447a4cae76379c4b3153957998afd65 (diff)
gdb: SwTxtNode -> SwTextNode
Fixes the unexpected ' ~DeletedNode' lines in the output. Change-Id: I1f59c2cd986addd08e632d0bc1cc53b33048db77 (cherry picked from commit 390aa6277af88ef6d0f4c38a503848d01e801875)
Diffstat (limited to 'solenv')
-rw-r--r--solenv/gdb/libreoffice/sw.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/gdb/libreoffice/sw.py b/solenv/gdb/libreoffice/sw.py
index 71445d5b0b77..fa7375914563 100644
--- a/solenv/gdb/libreoffice/sw.py
+++ b/solenv/gdb/libreoffice/sw.py
@@ -209,7 +209,7 @@ class BigPtrArrayPrinter(object):
def _node_value(self, node):
cur_indent = self.indent
- if str(node.dynamic_type.target()) == "SwTxtNode":
+ if str(node.dynamic_type.target()) == "SwTextNode":
# accessing this is completely non-obvious...
# also, node.dynamic_cast(node.dynamic_type) is null?
value = " TextNode " + \