diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-07-25 12:05:23 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-07-25 15:28:39 +0200 |
commit | 9fdb06d65a8f2c3401392bffee9c4639e178aada (patch) | |
tree | 419c56ec5b0936212c8621e3ed2822559963e9c7 /solenv/gdb/libreoffice | |
parent | 493b62c6805125b7f3ebfbd2b4b73a7d49aa0f67 (diff) |
rename SwIndex->SwContentIndex
to help my poor brain with the different kinds of index we have floating
around
Change-Id: I47ed223922170687d7e07812445aed66b3218230
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137404
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'solenv/gdb/libreoffice')
-rw-r--r-- | solenv/gdb/libreoffice/sw.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/solenv/gdb/libreoffice/sw.py b/solenv/gdb/libreoffice/sw.py index 707d0a425518..e669320fb41a 100644 --- a/solenv/gdb/libreoffice/sw.py +++ b/solenv/gdb/libreoffice/sw.py @@ -38,8 +38,8 @@ class SwNodeIndexPrinter(object): nodeindex = block['nStart'] + node['m_nOffset'] return "%s (node %d)" % (self.typename, nodeindex) -class SwIndexPrinter(object): - '''Prints SwIndex.''' +class SwContentIndexPrinter(object): + '''Prints SwContentIndex.''' def __init__(self, typename, value): self.typename = typename @@ -284,7 +284,7 @@ def build_pretty_printers(): printer.add('BigPtrArray', BigPtrArrayPrinter) printer.add('SwPosition', SwPositionPrinter) printer.add('SwNodeIndex', SwNodeIndexPrinter) - printer.add('SwIndex', SwIndexPrinter) + printer.add('SwContentIndex', SwContentIndexPrinter) printer.add('SwPaM', SwPaMPrinter) printer.add('SwUnoCursor', SwUnoCursorPrinter) printer.add('SwRect', SwRectPrinter) |