From b0ba08657f23d273721592c30f10d37e43a49ec2 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Thu, 24 Nov 2011 21:03:45 +0000 Subject: SwIndex::nIndex renamed to SwIndex::m_nIndex --- solenv/gdb/libreoffice/sw.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'solenv/gdb/libreoffice/sw.py') diff --git a/solenv/gdb/libreoffice/sw.py b/solenv/gdb/libreoffice/sw.py index 0b2ff7f94dbd..f41533a35204 100644 --- a/solenv/gdb/libreoffice/sw.py +++ b/solenv/gdb/libreoffice/sw.py @@ -36,7 +36,7 @@ class SwPositionPrinter(object): def to_string(self): node = self.value['nNode']['pNd'].dereference(); - offset = self.value['nContent']['nIndex'] + offset = self.value['nContent']['m_nIndex'] return "%s (node %d, offset %d)" % (self.typename, node['nOffset'], offset) class SwPaMPrinter(object): -- cgit