summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohan Dahlin <johan@gnome.org>2011-01-20 13:52:48 -0200
committerJohan Dahlin <johan@gnome.org>2011-01-20 13:53:05 -0200
commit86262fbb749bf4c04aef2306cd20282555d8b935 (patch)
treeec9576a372a636e5e81b13bed5f188b8150d2303
parentd59af7decedaef4dac5cbbc45399b647a3a6ec76 (diff)
downloadgobject-introspection-86262fbb749bf4c04aef2306cd20282555d8b935.tar.gz
Disable missing class structure warning, add a bug reference
-rw-r--r--giscanner/maintransformer.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/giscanner/maintransformer.py b/giscanner/maintransformer.py
index 345f0f0e..8ada9296 100644
--- a/giscanner/maintransformer.py
+++ b/giscanner/maintransformer.py
@@ -1023,8 +1023,9 @@ method or constructor of some type."""
def _pair_class_virtuals(self, node):
"""Look for virtual methods from the class structure."""
if not node.glib_type_struct:
- message.warn_node(node,
- "Failed to find class structure for %r" % (node.name, ))
+ # https://bugzilla.gnome.org/show_bug.cgi?id=629080
+ #message.warn_node(node,
+ # "Failed to find class structure for %r" % (node.name, ))
return
node_type = node.create_type()