summaryrefslogtreecommitdiff
path: root/solenv/gdb
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-12-04 13:27:18 +0200
committerNoel Grandin <noel@peralex.com>2015-12-07 11:01:59 +0200
commit7e1bb64f1417e05ad29d20c6be212de68ce4a769 (patch)
tree9b483d3a59d387d2aecff93dcde70eac3da15984 /solenv/gdb
parent9f0f30fa35fc25caac432554c865c8eacb4ed9bb (diff)
loplugin:mergeclasses OOXMLPropertyImpl into OOXMLProperty
Change-Id: I1447cfc76c529332450c90a21b6525d3103fe852
Diffstat (limited to 'solenv/gdb')
-rw-r--r--solenv/gdb/libreoffice/writerfilter.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/solenv/gdb/libreoffice/writerfilter.py b/solenv/gdb/libreoffice/writerfilter.py
index 90885c965cfd..487263e92b99 100644
--- a/solenv/gdb/libreoffice/writerfilter.py
+++ b/solenv/gdb/libreoffice/writerfilter.py
@@ -24,7 +24,7 @@ class OOXMLPropertySetPrinter(object):
return children.__iter__()
class OOXMLPropertyPrinter(object):
- '''Prints writerfilter::ooxml::OOXMLPropertyImpl'''
+ '''Prints writerfilter::ooxml::OOXMLProperty'''
def __init__(self, typename, value):
self.typename = typename
@@ -73,7 +73,7 @@ def build_pretty_printers():
global printer
printer = printing.Printer("libreoffice/writerfilter")
- printer.add('writerfilter::ooxml::OOXMLPropertyImpl', OOXMLPropertyPrinter)
+ printer.add('writerfilter::ooxml::OOXMLProperty', OOXMLPropertyPrinter)
printer.add('writerfilter::ooxml::OOXMLPropertySet', OOXMLPropertySetPrinter)
printer.add('writerfilter::ooxml::OOXMLPropertySetValue', OOXMLPropertySetValuePrinter)
printer.add('writerfilter::ooxml::OOXMLStringValue', OOXMLStringValuePrinter)