diff options
author | Johan Dahlin <johan@gnome.org> | 2010-06-05 12:11:58 -0300 |
---|---|---|
committer | Johan Dahlin <johan@gnome.org> | 2010-06-05 12:40:28 -0300 |
commit | 6039032537282a8f33ffb13c640bb824b5296650 (patch) | |
tree | 590006e960311e290202c715554a62aa45fe5050 /girepository/girepository.c | |
parent | bb832d71f7cb9648d2682ea490684da5f357bac0 (diff) | |
download | gobject-introspection-6039032537282a8f33ffb13c640bb824b5296650.tar.gz |
[girepository] Move GICallableInfo out of ginfo.ch
Diffstat (limited to 'girepository/girepository.c')
-rw-r--r-- | girepository/girepository.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/girepository/girepository.c b/girepository/girepository.c index f06270eb..66a604eb 100644 --- a/girepository/girepository.c +++ b/girepository/girepository.c @@ -30,7 +30,7 @@ #include <gmodule.h> #include "girepository.h" #include "gitypelib-internal.h" -#include "ginfo.h" +#include "girepository-private.h" #include "glib-compat.h" #include "config.h" @@ -606,9 +606,9 @@ find_interface (gpointer key, if (index != 0) { entry = g_typelib_get_dir_entry (typelib, index); - iface_data->iface = g_info_new_full (entry->blob_type, - iface_data->repo, - NULL, typelib, entry->offset); + iface_data->iface = _g_info_new_full (entry->blob_type, + iface_data->repo, + NULL, typelib, entry->offset); } } |