[gimp] app: use gimp_item_bounds() in test-xcf.c
- From: Michael Natterer <mitch src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp] app: use gimp_item_bounds() in test-xcf.c
- Date: Fri, 3 Jul 2015 22:24:17 +0000 (UTC)
commit 731cfc75325059671cc6a9995c7b81ad93001831
Author: Michael Natterer <mitch gimp org>
Date: Wed Jul 1 11:54:47 2015 +0200
app: use gimp_item_bounds() in test-xcf.c
app/tests/test-xcf.c | 14 +++++---------
1 files changed, 5 insertions(+), 9 deletions(-)
---
diff --git a/app/tests/test-xcf.c b/app/tests/test-xcf.c
index a759ea6..ba54931 100644
--- a/app/tests/test-xcf.c
+++ b/app/tests/test-xcf.c
@@ -718,10 +718,8 @@ gimp_assert_mainimage (GimpImage *image,
GimpRGB expected_channel_color = GIMP_MAINIMAGE_CHANNEL1_COLOR;
GimpRGB actual_channel_color = { 0, };
GimpChannel *selection = NULL;
- gint x1 = -1;
- gint y1 = -1;
- gint x2 = -1;
- gint y2 = -1;
+ gint x = -1;
+ gint y = -1;
gint w = -1;
gint h = -1;
GimpCoords vectors1_coords[] = GIMP_MAINIMAGE_VECTORS1_COORDS;
@@ -900,13 +898,11 @@ gimp_assert_mainimage (GimpImage *image,
if (! with_unusual_stuff)
{
selection = gimp_image_get_mask (image);
- gimp_channel_bounds (selection, &x1, &y1, &x2, &y2);
- w = x2 - x1;
- h = y2 - y1;
- g_assert_cmpint (x1,
+ gimp_item_bounds (GIMP_ITEM (selection), &x, &y, &w, &h);
+ g_assert_cmpint (x,
==,
GIMP_MAINIMAGE_SELECTION_X);
- g_assert_cmpint (y1,
+ g_assert_cmpint (y,
==,
GIMP_MAINIMAGE_SELECTION_Y);
g_assert_cmpint (w,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]