mirror of https://github.com/GNOME/gimp.git
fileops doesn't need to hide the help button, since it no longer exists.
-Yosh
This commit is contained in:
parent
4fe0ff8463
commit
f6daf6f769
|
@ -1,3 +1,8 @@
|
|||
Wed Mar 11 02:49:14 PST 1998 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* app/fileops.c: no need to hide the help button for fileops,
|
||||
since it doesn't exist anymore
|
||||
|
||||
Wed Mar 11 02:26:51 PST 1998 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* added animoptimize plugin
|
||||
|
|
|
@ -483,9 +483,6 @@ file_open_callback (GtkWidget *w,
|
|||
gtk_signal_connect (GTK_OBJECT (fileload), "delete_event",
|
||||
(GtkSignalFunc) file_delete_callback, fileload);
|
||||
gtk_signal_connect (GTK_OBJECT (GTK_FILE_SELECTION (fileload)->ok_button), "clicked", (GtkSignalFunc) file_open_ok_callback, fileload);
|
||||
/* hide the help button because we have nothing to connect to it */
|
||||
gtk_widget_hide ( GTK_FILE_SELECTION(fileload)->help_button);
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -571,8 +568,6 @@ file_save_as_callback (GtkWidget *w,
|
|||
gtk_signal_connect (GTK_OBJECT (filesave), "delete_event",
|
||||
(GtkSignalFunc) file_delete_callback, filesave);
|
||||
gtk_signal_connect (GTK_OBJECT (GTK_FILE_SELECTION (filesave)->ok_button), "clicked", (GtkSignalFunc) file_save_ok_callback, filesave);
|
||||
/* hide the help button because we have nothing to connect to it */
|
||||
gtk_widget_hide ( GTK_FILE_SELECTION(filesave)->help_button);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue