From: Paul Cornett Date: Tue, 2 Jul 2013 17:09:55 +0000 (+0000) Subject: use correct signature for class init function X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/26c7d90fd603d021cb586ae999f96be533336371?hp=6ee000088d08bd2d309d8a0d3f5615fcd74c0feb use correct signature for class init function git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74326 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/gtk/treeentry_gtk.c b/src/gtk/treeentry_gtk.c index 5b76211109..f091d64888 100644 --- a/src/gtk/treeentry_gtk.c +++ b/src/gtk/treeentry_gtk.c @@ -32,7 +32,7 @@ typedef pid_t GPid; */ /* forwards */ -static void gtk_tree_entry_class_init(GtkTreeEntryClass* klass); +static void gtk_tree_entry_class_init(void* g_class, void* class_data); static void gtk_tree_entry_init (GTypeInstance* instance, gpointer g_class); static void gtk_tree_entry_string_transform_func(const GValue *src_value, GValue *dest_value); @@ -58,7 +58,7 @@ gtk_tree_entry_get_type () sizeof (GtkTreeEntryClass), NULL, /* base_init */ NULL, /* base_finalize */ - (GClassInitFunc) gtk_tree_entry_class_init, /* class_init */ + gtk_tree_entry_class_init, NULL, /* class_finalize */ NULL, /* class_data */ sizeof (GtkTreeEntry), @@ -127,9 +127,9 @@ void gtk_tree_entry_set_destroy_func (GtkTreeEntry* entry, } /* private */ -static void gtk_tree_entry_class_init(GtkTreeEntryClass* klass) +static void gtk_tree_entry_class_init(void* g_class, void* class_data) { - GObjectClass* gobject_class = G_OBJECT_CLASS(klass); + GObjectClass* gobject_class = G_OBJECT_CLASS(g_class); gobject_class->dispose = gtk_tree_entry_dispose; }