mirror of https://github.com/GNOME/gimp.git
fileops.c Added info to the file save dialog
Sun Mar 15 22:50:44 CST 1998 Francisco Bustamante <pancho@nuclecu.unam.mx> * fileops.c Added info to the file save dialog
This commit is contained in:
parent
cdf6fc5ac1
commit
f8e540891e
|
@ -45,7 +45,7 @@ static char *scroll_text[] =
|
|||
"Roberto Boyd",
|
||||
"Seth Burgess",
|
||||
"Brent Burton",
|
||||
"Francisco Bustamente",
|
||||
"Francisco Bustamante",
|
||||
"Ed Connel",
|
||||
"Andreas Dilger",
|
||||
"Misha Dynin",
|
||||
|
|
|
@ -45,7 +45,7 @@ static char *scroll_text[] =
|
|||
"Roberto Boyd",
|
||||
"Seth Burgess",
|
||||
"Brent Burton",
|
||||
"Francisco Bustamente",
|
||||
"Francisco Bustamante",
|
||||
"Ed Connel",
|
||||
"Andreas Dilger",
|
||||
"Misha Dynin",
|
||||
|
|
|
@ -898,6 +898,8 @@ file_save_ok_callback (GtkWidget *w,
|
|||
{
|
||||
s = g_string_new ("Save failed: ");
|
||||
g_string_append (s, raw_filename);
|
||||
g_string_append (s, "\nYou might have tried to save an RGB image with");
|
||||
g_string_append (s, "\na plug-in that only supports Indexed or Gray images");
|
||||
}
|
||||
|
||||
message_box (s->str, NULL, NULL);
|
||||
|
@ -999,6 +1001,8 @@ file_overwrite_yes_callback (GtkWidget *w,
|
|||
s = g_string_new ("Save failed: ");
|
||||
|
||||
g_string_append (s, overwrite_box->raw_filename);
|
||||
g_string_append (s, "\nYou might have tried to save an RGB image with");
|
||||
g_string_append (s, "\na plug-in that only supports Indexed or Gray images");
|
||||
|
||||
message_box (s->str, NULL, NULL);
|
||||
|
||||
|
|
|
@ -45,7 +45,7 @@ static char *scroll_text[] =
|
|||
"Roberto Boyd",
|
||||
"Seth Burgess",
|
||||
"Brent Burton",
|
||||
"Francisco Bustamente",
|
||||
"Francisco Bustamante",
|
||||
"Ed Connel",
|
||||
"Andreas Dilger",
|
||||
"Misha Dynin",
|
||||
|
|
Loading…
Reference in New Issue