diff options
author | Jay Painter <jpaint@src.gnome.org> | 1998-02-19 02:59:55 +0000 |
---|---|---|
committer | Jay Painter <jpaint@src.gnome.org> | 1998-02-19 02:59:55 +0000 |
commit | 8923d60dba0e1990ca066ef7cf9b6b065a4c4b63 (patch) | |
tree | 53a7b15dfb88079748c6d6038432b9071a5c630b /gtk/gtkclist.h | |
parent | 9ad922290cc7495298099a4b97029942b0ce34c3 (diff) | |
download | gtk+-8923d60dba0e1990ca066ef7cf9b6b065a4c4b63.tar.gz |
CList signal revert (right back at you! *ouch*)
Diffstat (limited to 'gtk/gtkclist.h')
-rw-r--r-- | gtk/gtkclist.h | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/gtk/gtkclist.h b/gtk/gtkclist.h index fb3d3afdd7..164e2070c5 100644 --- a/gtk/gtkclist.h +++ b/gtk/gtkclist.h @@ -110,7 +110,7 @@ struct _GtkCList /* dynamicly allocated array of column structures */ GtkCListColumn *column; - /* the scrolling window and it's height and width to + /*the scrolling window and it's height and width to * make things a little speedier */ GdkWindow *clist_window; gint clist_window_width; @@ -153,26 +153,14 @@ struct _GtkCListClass { GtkContainerClass parent_class; - void (*mouse_click) (GtkCList * clist, - gint row, - gint column, - gint button); - - void (*mouse_double_click) (GtkCList * clist, - gint row, - gint column, - gint button); - void (*select_row) (GtkCList * clist, gint row, gint column, - gint button); - + GdkEventButton * event); void (*unselect_row) (GtkCList * clist, gint row, gint column, - gint button); - + GdkEventButton * event); void (*click_column) (GtkCList * clist, gint column); |