diff options
author | Colin Walters <walters@verbum.org> | 2009-02-26 16:52:42 -0500 |
---|---|---|
committer | Colin Walters <walters@verbum.org> | 2009-02-26 16:52:42 -0500 |
commit | ca21c1ce6f2fa9f8be9307121ce27a46cc9c0ed0 (patch) | |
tree | be25649d977e3daa4d461a5359b7cef677c94975 /tests/scanner/foo.h | |
parent | e49a883d0997127cd3a0ad7e522666f30190e792 (diff) | |
download | gobject-introspection-ca21c1ce6f2fa9f8be9307121ce27a46cc9c0ed0.tar.gz |
Revert "Bug 557383 - Virtual function support"
This reverts commit 4470a24e8cf3827efaddcfe240c3271cf1a0d6c0.
Needs more work as it turns out, we need to figure out the binding
story.
Diffstat (limited to 'tests/scanner/foo.h')
-rw-r--r-- | tests/scanner/foo.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/scanner/foo.h b/tests/scanner/foo.h index 2eeed6dc..da30df38 100644 --- a/tests/scanner/foo.h +++ b/tests/scanner/foo.h @@ -48,13 +48,11 @@ struct _FooInterfaceIface { GTypeInterface parent_iface; - void (*do_foo) (FooInterface *self, int x); + void (*do_foo) (FooInterface *self); }; GType foo_interface_get_type (void) G_GNUC_CONST; -void foo_interface_do_foo (FooInterface *iface, int x); - struct _FooSubInterfaceIface { GTypeInterface parent_iface; @@ -107,8 +105,6 @@ char * foo_object_dup_name (FooObject *object); void foo_object_handle_glyph (FooObject *object, UtilityGlyph glyph); -void foo_object_virtual_method (FooObject *object, int first_param); - int foo_object_static_meth (); struct _FooSubobject |