mirror of https://github.com/GNOME/gimp.git
context_id argument was removed from the process() call of
* app/gegl/gimpoperationtilesource.c: context_id argument was removed from the process() call of GeglOperationSource. svn path=/trunk/; revision=24854
This commit is contained in:
parent
3c5edcacbd
commit
75a3786e8a
|
@ -1,3 +1,8 @@
|
||||||
|
2008-02-11 Øyvind Kolås <pippin@gimp.org>
|
||||||
|
|
||||||
|
* app/gegl/gimpoperationtilesource.c: context_id argument was removed
|
||||||
|
from the process() call of GeglOperationSource.
|
||||||
|
|
||||||
2008-02-10 Michael Natterer <mitch@gimp.org>
|
2008-02-10 Michael Natterer <mitch@gimp.org>
|
||||||
|
|
||||||
* app/widgets/gimpeditor.c: add button-relief style property which
|
* app/widgets/gimpeditor.c: add button-relief style property which
|
||||||
|
|
|
@ -55,9 +55,8 @@ static void gimp_operation_tile_source_set_property (GObject *object,
|
||||||
|
|
||||||
static void gimp_operation_tile_source_prepare (GeglOperation *operation);
|
static void gimp_operation_tile_source_prepare (GeglOperation *operation);
|
||||||
static GeglRectangle
|
static GeglRectangle
|
||||||
gimp_operation_tile_source_get_bounding_box (GeglOperation *operation);
|
gimp_operation_tile_source_get_bounding_box (GeglOperation *operation);
|
||||||
static gboolean gimp_operation_tile_source_process (GeglOperation *operation,
|
static gboolean gimp_operation_tile_source_process (GeglOperation *operation,
|
||||||
GeglNodeContext *context,
|
|
||||||
GeglBuffer *output,
|
GeglBuffer *output,
|
||||||
const GeglRectangle *result);
|
const GeglRectangle *result);
|
||||||
|
|
||||||
|
@ -215,7 +214,6 @@ gimp_operation_tile_source_get_bounding_box (GeglOperation *operation)
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
gimp_operation_tile_source_process (GeglOperation *operation,
|
gimp_operation_tile_source_process (GeglOperation *operation,
|
||||||
GeglNodeContext *context,
|
|
||||||
GeglBuffer *output,
|
GeglBuffer *output,
|
||||||
const GeglRectangle *result)
|
const GeglRectangle *result)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue