app/Makefile.am removed.

2001-02-03  Michael Natterer  <mitch@gimp.org>

	* app/Makefile.am
	* app/gimpset.[ch]: removed.

	* app/gimpcontainer.[ch]: some minor fixes, cleanup.

	* app/context_manager.[ch]: made the "image_context" a GimpContainer
	and moved it here...

	* app/appenv.h
	* app/main.c: ...from here.

	* app/app_procs.c
	* app/colormap_dialog.[ch]
	* app/commands.c
	* app/gimage.c
	* app/gimpcontext.c
	* app/gimpimage.c
	* app/info_window.c
	* app/lc_dialog.c
	* app/lut_funcs.c
	* app/module_db.c
	* app/nav_window.c
	* app/palette_import.c
	* app/paths_dialog.c
	* app/pixel_region.c
	* app/scale.c
	* app/scroll.c
	* app/selection.c
	* app/temp_buf.c
	* app/undo.c
	* app/pdb/procedural_db.c
	* app/tools/by_color_select.c
	* app/tools/clone.c
	* app/tools/color_balance.c
	* app/tools/color_picker.c
	* app/tools/convolve.c
	* app/tools/crop.c
	* app/tools/curves.c
	* app/tools/paint_core.c
	* app/tools/transform_core.c: s/GimpSet/GimpContainer/g, removed
	many useless #include "appenv.h".

	* app/gimpdrawablepreview.c
	* app/gdisplay.c: found two badly crashing bugs i have introduced
	with my last changes here.
This commit is contained in:
Michael Natterer
2001-02-03 22:05:41 +00:00
committed by Michael Natterer
parent 7c85e907b6
commit c46bdc37f0
98 changed files with 514 additions and 1008 deletions

View File

@ -3914,7 +3914,7 @@ gimp_image_construct_composite_preview (GimpImage *gimage,
gint x, y, w, h;
gint x1, y1, x2, y2;
gint bytes;
gint construct_flag;
gboolean construct_flag;
gint visible[MAX_CHANNELS] = {1, 1, 1, 1};
gint off_x, off_y;
@ -3965,7 +3965,7 @@ gimp_image_construct_composite_preview (GimpImage *gimage,
}
}
construct_flag = 0;
construct_flag = FALSE;
while (reverse_list)
{
@ -4051,7 +4051,7 @@ gimp_image_construct_composite_preview (GimpImage *gimage,
break;
}
construct_flag = 1;
construct_flag = TRUE;
reverse_list = g_slist_next (reverse_list);
}