summaryrefslogtreecommitdiff
path: root/solenv
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-04-04 15:58:25 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-04-04 15:58:25 +0200
commit3e0d46249b92f3be3355364b68014ef6a4329391 (patch)
treedabc0c0b5dc4b42dffa4fcd51aed415b30fe790e /solenv
parent9009663deb8f0862f419fd99bf0b761c7f923eff (diff)
Missing str(...) when an arg is itself a css::uno::Sequence<...>
Change-Id: I54529e7086014a2feba89eb73f3b368d36f758b8
Diffstat (limited to 'solenv')
-rw-r--r--solenv/gdb/libreoffice/util/uno.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/gdb/libreoffice/util/uno.py b/solenv/gdb/libreoffice/util/uno.py
index a80fdd856d0d..648ea408a6d5 100644
--- a/solenv/gdb/libreoffice/util/uno.py
+++ b/solenv/gdb/libreoffice/util/uno.py
@@ -97,7 +97,7 @@ class TemplateType(object):
self.args = args
def __str__(self):
- argtypes = [str(gdb.lookup_type(arg).strip_typedefs()) for arg in self.args]
+ argtypes = [str(gdb.lookup_type(str(arg)).strip_typedefs()) for arg in self.args]
return self.template + '<' + ', '.join(argtypes) + '>'
class Type(object):