[Libreoffice-commits] core.git: solenv/gdb
Stephan Bergmann
sbergman at redhat.com
Tue Apr 4 13:58:52 UTC 2017
solenv/gdb/libreoffice/util/uno.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 3e0d46249b92f3be3355364b68014ef6a4329391
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Tue Apr 4 15:58:25 2017 +0200
Missing str(...) when an arg is itself a css::uno::Sequence<...>
Change-Id: I54529e7086014a2feba89eb73f3b368d36f758b8
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):
More information about the Libreoffice-commits
mailing list