diff options
author | Jonathan Blandford <jrb@redhat.com> | 2000-11-10 19:38:53 +0000 |
---|---|---|
committer | Jonathan Blandford <jrb@src.gnome.org> | 2000-11-10 19:38:53 +0000 |
commit | f8faec4574fbc9651f369768da85d54ebadc5cbb (patch) | |
tree | 806c3c1b7997cf92038d470674a4a1d5af5a60d3 /tests/treestoretest.c | |
parent | c97d57ebb8ceae99ed77fc6d953470e01d74310a (diff) | |
download | gtk+-f8faec4574fbc9651f369768da85d54ebadc5cbb.tar.gz |
use the new BOXED marshallers.
Fri Nov 10 12:10:34 2000 Jonathan Blandford <jrb@redhat.com>
* gtk/gtkliststore.c (gtk_model_simple_class_init): use the new
BOXED marshallers.
* gtk/gtkliststore.c (gtk_list_store_get_column_type): Add this.
(gtk_list_store_class_init): use the new BOXED marshallers.
* gtk/gtktreestore.c (gtk_tree_store_new_with_types): change
new_with_values to new_with_types.
(gtk_tree_store_get_column_type): add this.
(gtk_tree_store_class_init): use the new BOXED marshallers.
* gtk/gtkmarshal.list: Added a number of BOXED marshallers to
mirror some POINTER marshallers.
Diffstat (limited to 'tests/treestoretest.c')
-rw-r--r-- | tests/treestoretest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/treestoretest.c b/tests/treestoretest.c index 3835d9d170..15ac08230e 100644 --- a/tests/treestoretest.c +++ b/tests/treestoretest.c @@ -261,7 +261,7 @@ main (int argc, char *argv[]) { gtk_init (&argc, &argv); - model = gtk_tree_store_new_with_values (2, G_TYPE_STRING, G_TYPE_STRING); + model = gtk_tree_store_new_with_types (2, G_TYPE_STRING, G_TYPE_STRING); make_window (); make_window (); |