mirror of https://github.com/GNOME/gimp.git
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:
parent
c02db336b2
commit
b05f238d3f
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue