diff options
author | Jonathan Blandford <jrb@redhat.com> | 2001-05-22 20:30:48 +0000 |
---|---|---|
committer | Jonathan Blandford <jrb@src.gnome.org> | 2001-05-22 20:30:48 +0000 |
commit | 04af158605b23034b2911da6dfed8ce7c776bd90 (patch) | |
tree | 6b595ba0a67f65c9ff90db3f4bca50d24fca2642 /tests/testtreecolumns.c | |
parent | 66152ab6d01e53530dbd248f0b4bd6a0683e4b97 (diff) | |
download | gtk+-04af158605b23034b2911da6dfed8ce7c776bd90.tar.gz |
Added patch from Jeff Franks <jcf@tpg.com.au> to add GET_CLASS macros to
Tue May 22 16:25:27 2001 Jonathan Blandford <jrb@redhat.com>
* gtk/gtktreeview*.h:
* gtk/gtkcell*.h:
* gtk/gtk*store.h:
Added patch from Jeff Franks <jcf@tpg.com.au> to add GET_CLASS
macros to all objects.
Diffstat (limited to 'tests/testtreecolumns.c')
-rw-r--r-- | tests/testtreecolumns.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/testtreecolumns.c b/tests/testtreecolumns.c index af95e5e39b..eabfb3b0bd 100644 --- a/tests/testtreecolumns.c +++ b/tests/testtreecolumns.c @@ -34,10 +34,6 @@ struct _ViewColumnModelClass GObjectClass parent_class; }; -static void view_column_model_class_init (ViewColumnModelClass *model) -{ -} - static void view_column_model_init (ViewColumnModel *model) { model->stamp = g_random_int (); @@ -243,7 +239,7 @@ view_column_model_get_type (void) sizeof (GtkListStoreClass), NULL, /* base_init */ NULL, /* base_finalize */ - (GClassInitFunc) view_column_model_class_init, + NULL, /* class_init */ NULL, /* class_finalize */ NULL, /* class_data */ sizeof (GtkListStore), |