Fix argument order. Fixes #82806.

2002-06-11  Anders Carlsson  <andersca@gnu.org>

	* gtypemodule.c: (g_type_module_complete_interface_info):
	* gtypeplugin.h:
	Fix argument order. Fixes #82806.
This commit is contained in:
Anders Carlsson
2002-06-11 21:44:04 +00:00
committed by Anders Carlsson
parent 581c71d278
commit 00be16f1dd
3 changed files with 9 additions and 3 deletions

View File

@@ -45,8 +45,8 @@ typedef void (*GTypePluginCompleteTypeInfo) (GTypePlugin *plugin,
GTypeInfo *info,
GTypeValueTable *value_table);
typedef void (*GTypePluginCompleteInterfaceInfo) (GTypePlugin *plugin,
GType interface_type,
GType instance_type,
GType interface_type,
GInterfaceInfo *info);
struct _GTypePluginClass
{
@@ -68,8 +68,8 @@ void g_type_plugin_complete_type_info (GTypePlugin *plugin,
GTypeInfo *info,
GTypeValueTable *value_table);
void g_type_plugin_complete_interface_info (GTypePlugin *plugin,
GType interface_type,
GType instance_type,
GType interface_type,
GInterfaceInfo *info);
G_END_DECLS