diff options
author | Manish Singh <yosh@src.gnome.org> | 1998-12-17 05:21:45 +0000 |
---|---|---|
committer | Manish Singh <yosh@src.gnome.org> | 1998-12-17 05:21:45 +0000 |
commit | a9575223a6aa8dafd08736a3f615e32d6f7cd61c (patch) | |
tree | 3b443db1ac4671f7c571ad0016e5cac374fa6e1b /gtk/gtkbutton.h | |
parent | b0ecac9fa15c46128ac14b354f5b048bd93dd465 (diff) | |
download | gtk+-a9575223a6aa8dafd08736a3f615e32d6f7cd61c.tar.gz |
rm -rf intl breaks --disable-nls, put it back
* autogen.sh: rm -rf intl breaks --disable-nls, put it back
* gtkbutton.[ch]
* gtktogglebutton.c: s/(enter|leave)/$1_button/g.
Digital: 1 GTK+: 0 (for now)
-Yosh
Diffstat (limited to 'gtk/gtkbutton.h')
-rw-r--r-- | gtk/gtkbutton.h | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/gtk/gtkbutton.h b/gtk/gtkbutton.h index 8b2fbf6738..b6d901a755 100644 --- a/gtk/gtkbutton.h +++ b/gtk/gtkbutton.h @@ -56,11 +56,15 @@ struct _GtkButtonClass { GtkBinClass parent_class; - void (* pressed) (GtkButton *button); - void (* released) (GtkButton *button); - void (* clicked) (GtkButton *button); - void (* enter) (GtkButton *button); - void (* leave) (GtkButton *button); + 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); }; |