From 7deae0a996488ef2cd16155b374ea704b66b0909 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Rapinat?= Date: Wed, 21 Nov 2012 19:49:22 +0000 Subject: [PATCH] TypeError: GObject.__init__() takes exactly 0 arguments (1 given); see mailing list (Benny) svn: r20691 --- gramps/gui/plug/_windows.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps/gui/plug/_windows.py b/gramps/gui/plug/_windows.py index 332b9231d..0f6f0a8f6 100644 --- a/gramps/gui/plug/_windows.py +++ b/gramps/gui/plug/_windows.py @@ -694,7 +694,7 @@ class PluginTrace(ManagedWindow): #------------------------------------------------------------------------- class LinkTag(Gtk.TextTag): def __init__(self, link, buffer): - GObject.GObject.__init__(self, link) + GObject.GObject.__init__(self, name=link) tag_table = buffer.get_tag_table() self.set_property('foreground', "#0000ff") self.set_property('underline', Pango.Underline.SINGLE)