[Libreoffice-commits] core.git: solenv/gdb
Miklos Vajna
vmiklos at collabora.co.uk
Tue May 26 03:52:46 PDT 2015
solenv/gdb/libreoffice/sw.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 390aa6277af88ef6d0f4c38a503848d01e801875
Author: Miklos Vajna <vmiklos at collabora.co.uk>
Date: Tue May 26 12:48:13 2015 +0200
gdb: SwTxtNode -> SwTextNode
Fixes the unexpected ' ~DeletedNode' lines in the output.
Change-Id: I1f59c2cd986addd08e632d0bc1cc53b33048db77
diff --git a/solenv/gdb/libreoffice/sw.py b/solenv/gdb/libreoffice/sw.py
index 71445d5..fa73759 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 " + \
More information about the Libreoffice-commits
mailing list