summaryrefslogtreecommitdiff
path: root/girepository/gifunctioninfo.c
diff options
context:
space:
mode:
authorTomeu Vizoso <tomeu.vizoso@collabora.com>2011-10-30 16:31:23 +0100
committerMartin Pitt <martinpitt@gnome.org>2012-03-27 17:42:30 +0200
commit4d8e35ecdc756fa7439a1dc4e08ebd9964d92a73 (patch)
treeae1b48a7a2df48cddc0fb552fdd4b8a71fe87a58 /girepository/gifunctioninfo.c
parent9406a644ba29c3df59c6493843fe06dea5614c24 (diff)
downloadgobject-introspection-4d8e35ecdc756fa7439a1dc4e08ebd9964d92a73.tar.gz
Make g_callable_info_invoke public
So it can be used for invoking callbacks https://bugzilla.gnome.org/show_bug.cgi?id=663052 Signed-off-by: Martin Pitt <martinpitt@gnome.org>
Diffstat (limited to 'girepository/gifunctioninfo.c')
-rw-r--r--girepository/gifunctioninfo.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/girepository/gifunctioninfo.c b/girepository/gifunctioninfo.c
index 92f4ccd2..a5858c76 100644
--- a/girepository/gifunctioninfo.c
+++ b/girepository/gifunctioninfo.c
@@ -271,14 +271,14 @@ g_function_info_invoke (GIFunctionInfo *info,
&& (g_function_info_get_flags (info) & GI_FUNCTION_IS_CONSTRUCTOR) == 0;
throws = g_function_info_get_flags (info) & GI_FUNCTION_THROWS;
- return _g_callable_info_invoke ((GICallableInfo*) info,
- func,
- in_args,
- n_in_args,
- out_args,
- n_out_args,
- return_value,
- is_method,
- throws,
- error);
+ return g_callable_info_invoke ((GICallableInfo*) info,
+ func,
+ in_args,
+ n_in_args,
+ out_args,
+ n_out_args,
+ return_value,
+ is_method,
+ throws,
+ error);
}