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
This commit is contained in:
Manish Singh
1998-12-17 05:21:45 +00:00
parent b0ecac9fa1
commit a9575223a6
11 changed files with 71 additions and 14 deletions

View File

@ -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);
};