scanner: Don't add redundant notify signal
authorColin Walters <walters@verbum.org>
Mon, 12 Sep 2011 18:29:17 +0000 (14:29 -0400)
committerColin Walters <walters@verbum.org>
Mon, 12 Sep 2011 18:29:51 +0000 (14:29 -0400)
It was actually introduced by e0fea819f0da1ca60cce3280e7e21f3d2955be3a

giscanner/gdumpparser.py

index 3da49e8..c0c4ef6 100644 (file)
@@ -224,10 +224,6 @@ blob containing data gleaned from GObject's primitive introspection."""
             node.fundamental = True
             if record.name == 'ParamSpec':
                 node.is_abstract = True
-            elif record.name == 'Object':
-                node.signals.append(ast.Signal('notify', ast.Return(ast.TYPE_NONE), [],
-                                               detailed=True, when='first', no_recurse=True,
-                                               no_hooks=True, action=True))
             self._add_record_fields(node)
             self._namespace.append(node, replace=True)
         elif record.name == 'Variant':