mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-10-18 03:12:52 +02:00
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:
committed by
Anders Carlsson
parent
581c71d278
commit
00be16f1dd
@@ -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
|
||||
|
Reference in New Issue
Block a user