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:
committed by
Jonathan Blandford
parent
0ebf76901c
commit
ef084e87e5
@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user