[gimp] pygimp: remove calls to gimp_context_set_transform_recursion
- From: Kristian Rietveld <kristian src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp] pygimp: remove calls to gimp_context_set_transform_recursion
- Date: Fri, 29 Apr 2016 19:53:17 +0000 (UTC)
commit fb5d4ac076303b70f9f373181b74bd37e75860b6
Author: Kristian Rietveld <kris loopnest org>
Date: Fri Apr 29 11:24:37 2016 +0200
pygimp: remove calls to gimp_context_set_transform_recursion
This deprecated function is currently a no-op anyway.
plug-ins/pygimp/pygimp-drawable.c | 7 -------
1 files changed, 0 insertions(+), 7 deletions(-)
---
diff --git a/plug-ins/pygimp/pygimp-drawable.c b/plug-ins/pygimp/pygimp-drawable.c
index 2128f65..494902e 100644
--- a/plug-ins/pygimp/pygimp-drawable.c
+++ b/plug-ins/pygimp/pygimp-drawable.c
@@ -481,7 +481,6 @@ drw_transform_flip(PyGimpDrawable *self, PyObject *args, PyObject *kwargs)
gimp_context_push ();
gimp_context_set_transform_direction (transform_direction);
gimp_context_set_interpolation (interpolation);
- gimp_context_set_transform_recursion (recursion_level);
gimp_context_set_transform_resize (clip_result);
id = gimp_item_transform_flip (self->ID, x0, y0, x1, y1);
@@ -572,7 +571,6 @@ drw_transform_perspective(PyGimpDrawable *self, PyObject *args, PyObject *kwargs
gimp_context_push ();
gimp_context_set_transform_direction (transform_direction);
gimp_context_set_interpolation (interpolation);
- gimp_context_set_transform_recursion (recursion_level);
gimp_context_set_transform_resize (clip_result);
id = gimp_item_transform_perspective (self->ID,
@@ -638,7 +636,6 @@ drw_transform_rotate(PyGimpDrawable *self, PyObject *args, PyObject *kwargs)
gimp_context_push ();
gimp_context_set_transform_direction (transform_direction);
gimp_context_set_interpolation (interpolation);
- gimp_context_set_transform_recursion (recursion_level);
gimp_context_set_transform_resize (clip_result);
id = gimp_item_transform_rotate (self->ID, angle, auto_center,
@@ -732,7 +729,6 @@ drw_transform_scale(PyGimpDrawable *self, PyObject *args, PyObject *kwargs)
gimp_context_push ();
gimp_context_set_transform_direction (transform_direction);
gimp_context_set_interpolation (interpolation);
- gimp_context_set_transform_recursion (recursion_level);
gimp_context_set_transform_resize (clip_result);
id = gimp_item_transform_scale (self->ID, x0, y0, x1, y1);
@@ -794,7 +790,6 @@ drw_transform_shear(PyGimpDrawable *self, PyObject *args, PyObject *kwargs)
gimp_context_push ();
gimp_context_set_transform_direction (transform_direction);
gimp_context_set_interpolation (interpolation);
- gimp_context_set_transform_recursion (recursion_level);
gimp_context_set_transform_resize (clip_result);
id = gimp_item_transform_shear (self->ID, shear_type, magnitude);
@@ -859,7 +854,6 @@ drw_transform_2d(PyGimpDrawable *self, PyObject *args, PyObject *kwargs)
gimp_context_push ();
gimp_context_set_transform_direction (transform_direction);
gimp_context_set_interpolation (interpolation);
- gimp_context_set_transform_recursion (recursion_level);
gimp_context_set_transform_resize (clip_result);
id = gimp_item_transform_2d (self->ID, source_x, source_y,
@@ -931,7 +925,6 @@ drw_transform_matrix(PyGimpDrawable *self, PyObject *args, PyObject *kwargs)
gimp_context_push ();
gimp_context_set_transform_direction (transform_direction);
gimp_context_set_interpolation (interpolation);
- gimp_context_set_transform_recursion (recursion_level);
gimp_context_set_transform_resize (clip_result);
id = gimp_item_transform_matrix (self->ID,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]