diff options
author | Manish Singh <yosh@src.gnome.org> | 1998-12-19 03:24:15 +0000 |
---|---|---|
committer | Manish Singh <yosh@src.gnome.org> | 1998-12-19 03:24:15 +0000 |
commit | ee173b486ff0c598320db3b78cdbbffa597c15ba (patch) | |
tree | 2067a1a7bb791fe274074c4c16920c442458cf9f /gtk/gtkbutton.h | |
parent | 2231b92bbb1cca5796cce4bcae6d10da05e63eb7 (diff) | |
download | gtk+-ee173b486ff0c598320db3b78cdbbffa597c15ba.tar.gz |
s/(enter|leave)_button/$1/g, since pthreads.h no longer conflicts
-Yosh
Diffstat (limited to 'gtk/gtkbutton.h')
-rw-r--r-- | gtk/gtkbutton.h | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/gtk/gtkbutton.h b/gtk/gtkbutton.h index b6d901a755..8b2fbf6738 100644 --- a/gtk/gtkbutton.h +++ b/gtk/gtkbutton.h @@ -56,15 +56,11 @@ struct _GtkButtonClass { GtkBinClass parent_class; - void (* pressed) (GtkButton *button); - void (* released) (GtkButton *button); - void (* clicked) (GtkButton *button); - - /* these used to be enter and leave, but Digital decided they were more - important than us. They may have beaten us for now, but revenge is - a dish best served cold */ - void (* enter_button) (GtkButton *button); - void (* leave_button) (GtkButton *button); + void (* pressed) (GtkButton *button); + void (* released) (GtkButton *button); + void (* clicked) (GtkButton *button); + void (* enter) (GtkButton *button); + void (* leave) (GtkButton *button); }; |