diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-05-26 12:48:13 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-05-26 12:52:15 +0200 |
commit | 390aa6277af88ef6d0f4c38a503848d01e801875 (patch) | |
tree | 3853fc9f993b0d184f7a246fb956960e6b0fe2c5 /solenv | |
parent | dbca69b975ea8b25c040f12441d70f90cf0e9ab4 (diff) |
gdb: SwTxtNode -> SwTextNode
Fixes the unexpected ' ~DeletedNode' lines in the output.
Change-Id: I1f59c2cd986addd08e632d0bc1cc53b33048db77
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/gdb/libreoffice/sw.py | 2 |
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 " + \ |