removed #ifdef'ed code that isn't any longer needed.

2004-07-03  Sven Neumann  <sven@gimp.org>

	* plug-ins/common/dog.c (dog): removed #ifdef'ed code that isn't
	any longer needed.
This commit is contained in:
Sven Neumann 2004-07-03 10:16:48 +00:00 committed by Sven Neumann
parent 25fa494408
commit 87ee13fad1
3 changed files with 39 additions and 9 deletions

View File

@ -1,3 +1,8 @@
2004-07-03 Sven Neumann <sven@gimp.org>
* plug-ins/common/dog.c (dog): removed #ifdef'ed code that isn't
any longer needed.
2004-07-02 Philip Lafleur <plafleur@cvs.gnome.org> 2004-07-02 Philip Lafleur <plafleur@cvs.gnome.org>
* app/tools/gimptransformoptions.[ch]: * app/tools/gimptransformoptions.[ch]:
@ -223,7 +228,7 @@
Geert Jordaens that implements the gimp-path-get-point-at-dist Geert Jordaens that implements the gimp-path-get-point-at-dist
PDB function (fixes bug #138754). PDB function (fixes bug #138754).
* app/pdb/paths_cmds.c: regenerated * app/pdb/paths_cmds.c: regenerated.
2004-06-30 Michael Natterer <mitch@gimp.org> 2004-06-30 Michael Natterer <mitch@gimp.org>

33
NEWS
View File

@ -7,6 +7,39 @@ release, GIMP 2.2, will emerge out of this.
Overview of Changes in GIMP 2.1.2
=================================
- Further improvements to the new input controllers; added a keyboard
controller.
- Show image preview in GFig plug-in.
- Added Difference of Gaussians edge detection plug-in.
- Added more possibilities for drag'n'drop:
* layers dialog accepts URI, color and pattern drops
* path dialog takes and offers DND of SVG data
- Implemented PDB function gimp-path-get-point-at-dist.
- Allow to use the color picker to edit palettes (as in gimp-1.2).
- Improved gimpressionist plug-in.
- Allow to cut'n'paste image data between GIMP and other applications
(for example Abiword) using the system clipboard.
- Lots of bug fizes and other goodies. Check the ChangeLog for details.
Contributors:
Michael Natterer, Sven Neumann, Philip Lafleur, William Skaggs,
Geert Jordaens, Simon Budig, Roman Joost, Michael Schumacher,
Shlomi Fish
Overview of Changes in GIMP 2.1.1 Overview of Changes in GIMP 2.1.1
================================= =================================

View File

@ -463,11 +463,6 @@ dog (GimpDrawable *drawable,
gauss_rle (drawable1, inner, 0, show_progress); gauss_rle (drawable1, inner, 0, show_progress);
gauss_rle (drawable2, outer, 1, show_progress); gauss_rle (drawable2, outer, 1, show_progress);
#if 0
_gimp_tile_cache_flush_drawable (drawable1);
_gimp_tile_cache_flush_drawable (drawable2);
#endif
compute_difference (drawable, drawable1, drawable2, &maxval); compute_difference (drawable, drawable1, drawable2, &maxval);
gimp_drawable_detach (drawable1); gimp_drawable_detach (drawable1);
@ -486,9 +481,6 @@ dog (GimpDrawable *drawable,
gimp_drawable_flush (drawable); gimp_drawable_flush (drawable);
gimp_drawable_merge_shadow (drawable_id, TRUE); gimp_drawable_merge_shadow (drawable_id, TRUE);
gimp_drawable_update (drawable_id, x1, y1, width, height); gimp_drawable_update (drawable_id, x1, y1, width, height);
#if 0
_gimp_tile_cache_flush_drawable (drawable);
#endif
} }
if (dogvals.invert) if (dogvals.invert)