[gimp/soc-2011-warp] imagemap: rename internal function _gimp_image_map_apply to gimp_image_map_apply_real
- From: Michael Murà <mmure src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp/soc-2011-warp] imagemap: rename internal function _gimp_image_map_apply to gimp_image_map_apply_real
- Date: Mon, 25 Jul 2011 21:37:25 +0000 (UTC)
commit 133c170b1c001ee034779bf58161e74e2da27d7d
Author: Michael Murà <batolettre gmail com>
Date: Mon Jul 25 19:08:22 2011 +0200
imagemap: rename internal function _gimp_image_map_apply to gimp_image_map_apply_real
app/core/gimpimagemap.c | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/app/core/gimpimagemap.c b/app/core/gimpimagemap.c
index 7046ebc..a23a095 100644
--- a/app/core/gimpimagemap.c
+++ b/app/core/gimpimagemap.c
@@ -120,7 +120,7 @@ static gboolean gimp_image_map_get_pixel_at (GimpPickable *picka
gint y,
guchar *pixel);
-static void _gimp_image_map_apply (GimpImageMap *image_map,
+static void gimp_image_map_apply_real (GimpImageMap *image_map,
const GeglRectangle *full_region,
const GeglRectangle *to_render);
@@ -458,7 +458,7 @@ gimp_image_map_apply (GimpImageMap *image_map,
&rect.width, &rect.height))
return;
- _gimp_image_map_apply (image_map, &rect, &rect);
+ gimp_image_map_apply_real (image_map, &rect, &rect);
}
/**
@@ -487,7 +487,7 @@ gimp_image_map_apply_region (GimpImageMap *image_map,
&rect.width, &rect.height))
return;
- _gimp_image_map_apply (image_map, &rect, region);
+ gimp_image_map_apply_real (image_map, &rect, region);
}
/**
@@ -618,9 +618,9 @@ gimp_image_map_abort (GimpImageMap *image_map)
* Internal function to render a preview.
*/
static void
-_gimp_image_map_apply (GimpImageMap *image_map,
- const GeglRectangle *full_region,
- const GeglRectangle *to_render)
+gimp_image_map_apply_real (GimpImageMap *image_map,
+ const GeglRectangle *full_region,
+ const GeglRectangle *to_render)
{
g_return_if_fail (GIMP_IS_IMAGE_MAP (image_map));
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]