applied a patch from David Odin <David.Odin@bigfoot.com> that fixes a typo

2001-03-04  Sven Neumann  <sven@gimp.org>

	* app/preferences_dialog.c (prefs_save_callback): applied a patch
	from David Odin <David.Odin@bigfoot.com> that fixes a typo in the code.
This commit is contained in:
Sven Neumann 2001-03-04 11:08:09 +00:00 committed by Sven Neumann
parent c02db336b2
commit b05f238d3f
4 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2001-03-04 Sven Neumann <sven@gimp.org>
* app/preferences_dialog.c (prefs_save_callback): applied a patch
from David Odin <David.Odin@bigfoot.com> that fixes a typo in the code.
2001-03-04 Michael Natterer <mitch@gimp.org>
* app/Makefile.am

View File

@ -684,7 +684,7 @@ prefs_save_callback (GtkWidget *widget,
if (trust_dirty_flag != old_trust_dirty_flag)
{
update = g_list_append (update, "trust-dirty-flag");
remove = g_list_append (update, "dont-trust-dirty-flag");
remove = g_list_append (remove, "dont-trust-dirty-flag");
}
if (use_help != old_use_help)
{

View File

@ -684,7 +684,7 @@ prefs_save_callback (GtkWidget *widget,
if (trust_dirty_flag != old_trust_dirty_flag)
{
update = g_list_append (update, "trust-dirty-flag");
remove = g_list_append (update, "dont-trust-dirty-flag");
remove = g_list_append (remove, "dont-trust-dirty-flag");
}
if (use_help != old_use_help)
{

View File

@ -684,7 +684,7 @@ prefs_save_callback (GtkWidget *widget,
if (trust_dirty_flag != old_trust_dirty_flag)
{
update = g_list_append (update, "trust-dirty-flag");
remove = g_list_append (update, "dont-trust-dirty-flag");
remove = g_list_append (remove, "dont-trust-dirty-flag");
}
if (use_help != old_use_help)
{