mirror of https://github.com/GNOME/gimp.git
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:
parent
99a1fbe32d
commit
a4b94c04b1
|
@ -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>
|
2005-04-14 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
* plug-ins/helpbrowser/dialog.c: use a GtkUIManager to construct the
|
* plug-ins/helpbrowser/dialog.c: use a GtkUIManager to construct the
|
||||||
|
|
|
@ -210,7 +210,7 @@ gimp_drawable_get_tile (GimpDrawable *drawable,
|
||||||
|
|
||||||
GimpTile *
|
GimpTile *
|
||||||
gimp_drawable_get_tile2 (GimpDrawable *drawable,
|
gimp_drawable_get_tile2 (GimpDrawable *drawable,
|
||||||
gint shadow,
|
gboolean shadow,
|
||||||
gint x,
|
gint x,
|
||||||
gint y)
|
gint y)
|
||||||
{
|
{
|
||||||
|
|
|
@ -44,11 +44,11 @@ GimpDrawable * gimp_drawable_get (gint32 drawable_ID)
|
||||||
void gimp_drawable_detach (GimpDrawable *drawable);
|
void gimp_drawable_detach (GimpDrawable *drawable);
|
||||||
void gimp_drawable_flush (GimpDrawable *drawable);
|
void gimp_drawable_flush (GimpDrawable *drawable);
|
||||||
GimpTile * gimp_drawable_get_tile (GimpDrawable *drawable,
|
GimpTile * gimp_drawable_get_tile (GimpDrawable *drawable,
|
||||||
gint shadow,
|
gboolean shadow,
|
||||||
gint row,
|
gint row,
|
||||||
gint col);
|
gint col);
|
||||||
GimpTile * gimp_drawable_get_tile2 (GimpDrawable *drawable,
|
GimpTile * gimp_drawable_get_tile2 (GimpDrawable *drawable,
|
||||||
gint shadow,
|
gboolean shadow,
|
||||||
gint x,
|
gint x,
|
||||||
gint y);
|
gint y);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue