removed signals. Moved to inherit from GObject instead of GtkObject.

Wed Feb 21 15:41:34 2001  Jonathan Blandford  <jrb@redhat.com>

	* gtk/gtktreestore.c: removed signals.  Moved to inherit from
	GObject instead of GtkObject.

	* gtk/gtkliststore.c: ditto.

	* gtk/gtktreemodelsort.c: ditto.

	* gtk/gtktreemodel.c (gtk_tree_model_base_init): moved signals to
	GtkTreeModelIface, instead of in each model.
This commit is contained in:
Jonathan Blandford
2001-02-21 23:49:22 +00:00
committed by Jonathan Blandford
parent 0ebf76901c
commit ef084e87e5
15 changed files with 176 additions and 228 deletions

View File

@ -37,7 +37,7 @@ typedef struct _GtkListStoreClass GtkListStoreClass;
struct _GtkListStore
{
GtkObject parent;
GObject parent;
/*< private >*/
gint stamp;
@ -50,7 +50,7 @@ struct _GtkListStore
struct _GtkListStoreClass
{
GtkObjectClass parent_class;
GObjectClass parent_class;
/* signals */
/* Will be moved into the GtkTreeModelIface eventually */