summaryrefslogtreecommitdiff
path: root/gtk/gtktreeselection.h
diff options
context:
space:
mode:
authorJonathan Blandford <jrb@redhat.com>2001-06-07 22:33:14 +0000
committerJonathan Blandford <jrb@src.gnome.org>2001-06-07 22:33:14 +0000
commit59444d85e3abd3c9f8b1c1c27fdd67c4b716e723 (patch)
tree6ed58080028180d36b7d400f95795b630a91099f /gtk/gtktreeselection.h
parent10b868ebaea6ec4599e8fa7649b887fc329fcd1b (diff)
downloadgtk+-59444d85e3abd3c9f8b1c1c27fdd67c4b716e723.tar.gz
Now it's a GObject instead of a GtkObject. The
Thu Jun 7 18:25:42 2001 Jonathan Blandford <jrb@redhat.com> * gtk/gtktreeselection.c: Now it's a GObject instead of a GtkObject. The GtkTreeSelection::selection_changed signal is now the GtkTreeSelection::changed signal. * gtk/gtktreeview.c: Modified to deal with new GtkTreeSelection object. * tests/gtktree*.c: Modified to deal with new GtkTreeSelection object.
Diffstat (limited to 'gtk/gtktreeselection.h')
-rw-r--r--gtk/gtktreeselection.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtktreeselection.h b/gtk/gtktreeselection.h
index 104cb73dfa..f89f96948d 100644
--- a/gtk/gtktreeselection.h
+++ b/gtk/gtktreeselection.h
@@ -50,7 +50,7 @@ typedef void (* GtkTreeSelectionForeachFunc) (GtkTreeModel *model,
struct _GtkTreeSelection
{
- GtkObject parent;
+ GObject parent;
/*< private >*/
@@ -63,9 +63,9 @@ struct _GtkTreeSelection
struct _GtkTreeSelectionClass
{
- GtkObjectClass parent_class;
+ GObjectClass parent_class;
- void (* selection_changed) (GtkTreeView *tree_view);
+ void (* changed) (GtkTreeView *tree_view);
};