mirror of https://github.com/GNOME/gimp.git
*** empty log message ***
This commit is contained in:
parent
6d6f69b4da
commit
855ea9860f
|
@ -1,3 +1,8 @@
|
|||
Mon Aug 2 03:42:03 CEST 1999 Marc Lehmann <pcg@goof.com>
|
||||
|
||||
* app/app_procs.c: Improve the gimp_quit dialog to use "Quit" and
|
||||
"Cancel "instead of "Yes" and "No".
|
||||
|
||||
1999-08-02 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* plug-ins/winprint: New (Win32) print plug-in.
|
||||
|
|
|
@ -741,7 +741,7 @@ really_quit_dialog (void)
|
|||
(GtkSignalFunc) really_quit_delete_callback,
|
||||
dialog);
|
||||
|
||||
button = gtk_button_new_with_label (_("Yes"));
|
||||
button = gtk_button_new_with_label (_("Quit"));
|
||||
GTK_WIDGET_SET_FLAGS (button, GTK_CAN_DEFAULT);
|
||||
gtk_signal_connect (GTK_OBJECT (button), "clicked",
|
||||
(GtkSignalFunc) really_quit_callback,
|
||||
|
@ -750,7 +750,7 @@ really_quit_dialog (void)
|
|||
gtk_widget_grab_default (button);
|
||||
gtk_widget_show (button);
|
||||
|
||||
button = gtk_button_new_with_label (_("No"));
|
||||
button = gtk_button_new_with_label (_("Cancel"));
|
||||
GTK_WIDGET_SET_FLAGS (button, GTK_CAN_DEFAULT);
|
||||
gtk_signal_connect (GTK_OBJECT (button), "clicked",
|
||||
(GtkSignalFunc) really_quit_cancel_callback,
|
||||
|
|
Loading…
Reference in New Issue