app: Update name of file_save_dialog_save_image() parameter

Rename file_save_dialog_save_image() parameter save_a_copy to
change_saved_state since that is the semantics it has now.
This commit is contained in:
Martin Nordholts 2009-05-06 17:09:31 +02:00
parent a0d9f6e57e
commit 9c2aae1281
2 changed files with 4 additions and 4 deletions

View File

@ -246,7 +246,7 @@ file_save_cmd_callback (GtkAction *action,
gimp, image, uri,
save_proc,
GIMP_RUN_WITH_LAST_VALS,
FALSE, TRUE);
TRUE, TRUE);
break;
}

View File

@ -138,7 +138,7 @@ file_save_dialog_response (GtkWidget *save_dialog,
uri,
save_proc,
GIMP_RUN_INTERACTIVE,
dialog->save_a_copy,
! dialog->save_a_copy,
FALSE))
{
/* Save was successful, now store the URI in a couple of
@ -491,7 +491,7 @@ file_save_dialog_save_image (GimpProgress *progress,
const gchar *uri,
GimpPlugInProcedure *save_proc,
GimpRunMode run_mode,
gboolean save_a_copy,
gboolean change_saved_state,
gboolean verbose_cancel)
{
GimpPDBStatusType status;
@ -507,7 +507,7 @@ file_save_dialog_save_image (GimpProgress *progress,
}
status = file_save (gimp, image, progress, uri,
save_proc, run_mode, ! save_a_copy, &error);
save_proc, run_mode, change_saved_state, &error);
switch (status)
{