cleanup gint/gboolean confusion (spotted by Maurits Rijk).

2005-04-14  Sven Neumann  <sven@gimp.org>

	* libgimp/gimpdrawable.[ch] (gimp_drawable_get_tile)
	(gimp_drawable_get_tile2): cleanup gint/gboolean confusion (spotted
	by Maurits Rijk).
This commit is contained in:
Sven Neumann 2005-04-14 19:26:38 +00:00 committed by Sven Neumann
parent 99a1fbe32d
commit a4b94c04b1
3 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2005-04-14 Sven Neumann <sven@gimp.org>
* libgimp/gimpdrawable.[ch] (gimp_drawable_get_tile)
(gimp_drawable_get_tile2): cleanup gint/gboolean confusion (spotted
by Maurits Rijk).
2005-04-14 Sven Neumann <sven@gimp.org>
* plug-ins/helpbrowser/dialog.c: use a GtkUIManager to construct the

View File

@ -210,7 +210,7 @@ gimp_drawable_get_tile (GimpDrawable *drawable,
GimpTile *
gimp_drawable_get_tile2 (GimpDrawable *drawable,
gint shadow,
gboolean shadow,
gint x,
gint y)
{

View File

@ -44,11 +44,11 @@ GimpDrawable * gimp_drawable_get (gint32 drawable_ID)
void gimp_drawable_detach (GimpDrawable *drawable);
void gimp_drawable_flush (GimpDrawable *drawable);
GimpTile * gimp_drawable_get_tile (GimpDrawable *drawable,
gint shadow,
gboolean shadow,
gint row,
gint col);
GimpTile * gimp_drawable_get_tile2 (GimpDrawable *drawable,
gint shadow,
gboolean shadow,
gint x,
gint y);