Get the correct parent when generating my type.

2000-10-17    <jrb@redhat.com>

	* gtk/gtktreestore.c (gtk_tree_store_get_type): Get the correct
	parent when generating my type.

	* gtk/gtkmarshal.list: Added four more marshallers: INT:NONE,
	POINTER:NONE, POINTER:POINTER, and POINTER:POINTER,INT.
This commit is contained in:
7
2000-10-17 18:13:14 +00:00
committed by Jonathan Blandford
parent 457a5f9335
commit 77d0165892
10 changed files with 65 additions and 1 deletions

View File

@ -1,3 +1,11 @@
2000-10-17 <jrb@redhat.com>
* gtk/gtktreestore.c (gtk_tree_store_get_type): Get the correct
parent when generating my type.
* gtk/gtkmarshal.list: Added four more marshallers: INT:NONE,
POINTER:NONE, POINTER:POINTER, and POINTER:POINTER,INT.
2000-10-16 <jrb@redhat.com>
* gtk/gtktreemodel.h (struct _GtkTreeModelIface): Move

View File

@ -1,3 +1,11 @@
2000-10-17 <jrb@redhat.com>
* gtk/gtktreestore.c (gtk_tree_store_get_type): Get the correct
parent when generating my type.
* gtk/gtkmarshal.list: Added four more marshallers: INT:NONE,
POINTER:NONE, POINTER:POINTER, and POINTER:POINTER,INT.
2000-10-16 <jrb@redhat.com>
* gtk/gtktreemodel.h (struct _GtkTreeModelIface): Move

View File

@ -1,3 +1,11 @@
2000-10-17 <jrb@redhat.com>
* gtk/gtktreestore.c (gtk_tree_store_get_type): Get the correct
parent when generating my type.
* gtk/gtkmarshal.list: Added four more marshallers: INT:NONE,
POINTER:NONE, POINTER:POINTER, and POINTER:POINTER,INT.
2000-10-16 <jrb@redhat.com>
* gtk/gtktreemodel.h (struct _GtkTreeModelIface): Move

View File

@ -1,3 +1,11 @@
2000-10-17 <jrb@redhat.com>
* gtk/gtktreestore.c (gtk_tree_store_get_type): Get the correct
parent when generating my type.
* gtk/gtkmarshal.list: Added four more marshallers: INT:NONE,
POINTER:NONE, POINTER:POINTER, and POINTER:POINTER,INT.
2000-10-16 <jrb@redhat.com>
* gtk/gtktreemodel.h (struct _GtkTreeModelIface): Move

View File

@ -1,3 +1,11 @@
2000-10-17 <jrb@redhat.com>
* gtk/gtktreestore.c (gtk_tree_store_get_type): Get the correct
parent when generating my type.
* gtk/gtkmarshal.list: Added four more marshallers: INT:NONE,
POINTER:NONE, POINTER:POINTER, and POINTER:POINTER,INT.
2000-10-16 <jrb@redhat.com>
* gtk/gtktreemodel.h (struct _GtkTreeModelIface): Move

View File

@ -1,3 +1,11 @@
2000-10-17 <jrb@redhat.com>
* gtk/gtktreestore.c (gtk_tree_store_get_type): Get the correct
parent when generating my type.
* gtk/gtkmarshal.list: Added four more marshallers: INT:NONE,
POINTER:NONE, POINTER:POINTER, and POINTER:POINTER,INT.
2000-10-16 <jrb@redhat.com>
* gtk/gtktreemodel.h (struct _GtkTreeModelIface): Move

View File

@ -1,3 +1,11 @@
2000-10-17 <jrb@redhat.com>
* gtk/gtktreestore.c (gtk_tree_store_get_type): Get the correct
parent when generating my type.
* gtk/gtkmarshal.list: Added four more marshallers: INT:NONE,
POINTER:NONE, POINTER:POINTER, and POINTER:POINTER,INT.
2000-10-16 <jrb@redhat.com>
* gtk/gtktreemodel.h (struct _GtkTreeModelIface): Move

View File

@ -5,9 +5,13 @@ BOOL:POINTER,INT,INT
BOOL:POINTER,INT,INT,UINT
BOOL:POINTER,STRING,STRING,POINTER
ENUM:ENUM
INT:NONE
INT:POINTER
INT:POINTER,CHAR,CHAR
INT:OBJECT,BOXED,POINTER
POINTER:NONE
POINTER:POINTER
POINTER:POINTER,INT
NONE:BOOL
NONE:BOXED
NONE:ENUM

View File

@ -5,9 +5,13 @@ BOOL:POINTER,INT,INT
BOOL:POINTER,INT,INT,UINT
BOOL:POINTER,STRING,STRING,POINTER
ENUM:ENUM
INT:NONE
INT:POINTER
INT:POINTER,CHAR,CHAR
INT:OBJECT,BOXED,POINTER
POINTER:NONE
POINTER:POINTER
POINTER:POINTER,INT
NONE:BOOL
NONE:BOXED
NONE:ENUM

View File

@ -90,7 +90,7 @@ gtk_tree_store_get_type (void)
NULL
};
tree_store_type = g_type_register_static (GTK_TYPE_TREE_MODEL, "GtkTreeStore", &tree_store_info);
tree_store_type = g_type_register_static (GTK_TYPE_OBJECT, "GtkTreeStore", &tree_store_info);
g_type_add_interface_static (tree_store_type,
GTK_TYPE_TREE_MODEL,
&tree_model_info);