summaryrefslogtreecommitdiff
path: root/solenv
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-11-24 21:03:45 +0000
committerCaolán McNamara <caolanm@redhat.com>2011-11-24 21:17:47 +0000
commitb0ba08657f23d273721592c30f10d37e43a49ec2 (patch)
tree9eb75e641af3bbf7348c31c5876472736c23f46e /solenv
parent1c08f9066ca235018f69bc0999f7c61391de27a6 (diff)
SwIndex::nIndex renamed to SwIndex::m_nIndex
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 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):