mirror of https://github.com/GNOME/gimp.git
Fixed prefs to save stingy memory
Mon Apr 13 13:09:32 EDT 1998 Matthew Wilson <msw@gimp.org> * app/commands.c: Fixed prefs to save stingy memory --Matt
This commit is contained in:
parent
5574104b88
commit
eeb017e163
|
@ -1,3 +1,7 @@
|
|||
Mon Apr 13 13:09:32 EDT 1998 Matthew Wilson <msw@gimp.org>
|
||||
|
||||
* app/commands.c: Fixed prefs to save stingy memory
|
||||
|
||||
Mon Apr 13 16:22:38 MEST 1998 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/convert.c: converting an empty image from grayscale to
|
||||
|
|
|
@ -838,7 +838,7 @@ file_prefs_toggle_callback (GtkWidget *widget,
|
|||
else if (data==&confirm_on_close)
|
||||
confirm_on_close = GTK_TOGGLE_BUTTON (widget)->active;
|
||||
else if (data==&edit_stingy_memory_use)
|
||||
stingy_memory_use = GTK_TOGGLE_BUTTON (widget)->active;
|
||||
edit_stingy_memory_use = GTK_TOGGLE_BUTTON (widget)->active;
|
||||
else if (data==&edit_install_cmap)
|
||||
edit_install_cmap = GTK_TOGGLE_BUTTON (widget)->active;
|
||||
else if (data==&edit_cycled_marching_ants)
|
||||
|
|
|
@ -838,7 +838,7 @@ file_prefs_toggle_callback (GtkWidget *widget,
|
|||
else if (data==&confirm_on_close)
|
||||
confirm_on_close = GTK_TOGGLE_BUTTON (widget)->active;
|
||||
else if (data==&edit_stingy_memory_use)
|
||||
stingy_memory_use = GTK_TOGGLE_BUTTON (widget)->active;
|
||||
edit_stingy_memory_use = GTK_TOGGLE_BUTTON (widget)->active;
|
||||
else if (data==&edit_install_cmap)
|
||||
edit_install_cmap = GTK_TOGGLE_BUTTON (widget)->active;
|
||||
else if (data==&edit_cycled_marching_ants)
|
||||
|
|
|
@ -838,7 +838,7 @@ file_prefs_toggle_callback (GtkWidget *widget,
|
|||
else if (data==&confirm_on_close)
|
||||
confirm_on_close = GTK_TOGGLE_BUTTON (widget)->active;
|
||||
else if (data==&edit_stingy_memory_use)
|
||||
stingy_memory_use = GTK_TOGGLE_BUTTON (widget)->active;
|
||||
edit_stingy_memory_use = GTK_TOGGLE_BUTTON (widget)->active;
|
||||
else if (data==&edit_install_cmap)
|
||||
edit_install_cmap = GTK_TOGGLE_BUTTON (widget)->active;
|
||||
else if (data==&edit_cycled_marching_ants)
|
||||
|
|
|
@ -838,7 +838,7 @@ file_prefs_toggle_callback (GtkWidget *widget,
|
|||
else if (data==&confirm_on_close)
|
||||
confirm_on_close = GTK_TOGGLE_BUTTON (widget)->active;
|
||||
else if (data==&edit_stingy_memory_use)
|
||||
stingy_memory_use = GTK_TOGGLE_BUTTON (widget)->active;
|
||||
edit_stingy_memory_use = GTK_TOGGLE_BUTTON (widget)->active;
|
||||
else if (data==&edit_install_cmap)
|
||||
edit_install_cmap = GTK_TOGGLE_BUTTON (widget)->active;
|
||||
else if (data==&edit_cycled_marching_ants)
|
||||
|
|
Loading…
Reference in New Issue