summaryrefslogtreecommitdiff
path: root/gtk/gtktogglebutton.c
diff options
context:
space:
mode:
authorManish Singh <yosh@src.gnome.org>1998-12-17 05:21:45 +0000
committerManish Singh <yosh@src.gnome.org>1998-12-17 05:21:45 +0000
commita9575223a6aa8dafd08736a3f615e32d6f7cd61c (patch)
tree3b443db1ac4671f7c571ad0016e5cac374fa6e1b /gtk/gtktogglebutton.c
parentb0ecac9fa15c46128ac14b354f5b048bd93dd465 (diff)
downloadgdk-pixbuf-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/gtktogglebutton.c')
-rw-r--r--gtk/gtktogglebutton.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtktogglebutton.c b/gtk/gtktogglebutton.c
index 8b6fd6a88..3998680ad 100644
--- a/gtk/gtktogglebutton.c
+++ b/gtk/gtktogglebutton.c
@@ -129,8 +129,8 @@ gtk_toggle_button_class_init (GtkToggleButtonClass *class)
button_class->pressed = gtk_toggle_button_pressed;
button_class->released = gtk_toggle_button_released;
button_class->clicked = gtk_toggle_button_clicked;
- button_class->enter = gtk_toggle_button_enter;
- button_class->leave = gtk_toggle_button_leave;
+ button_class->enter_button = gtk_toggle_button_enter;
+ button_class->leave_button = gtk_toggle_button_leave;
class->toggled = NULL;
}