app: use gegl_node_has_pad() instead of gegl_node_get_pad()

This commit is contained in:
Michael Natterer 2011-01-22 23:54:25 +01:00
parent 3e38686693
commit 33479c1086

View file

@ -398,8 +398,8 @@ gimp_image_map_apply (GimpImageMap *image_map,
g_object_unref (sink_operation); g_object_unref (sink_operation);
} }
if (gegl_node_get_pad (image_map->operation, "input") && if (gegl_node_has_pad (image_map->operation, "input") &&
gegl_node_get_pad (image_map->operation, "output")) gegl_node_has_pad (image_map->operation, "output"))
{ {
/* if there are input and output pads we probably have a /* if there are input and output pads we probably have a
* filter OP, connect it on both ends. * filter OP, connect it on both ends.
@ -410,7 +410,7 @@ gimp_image_map_apply (GimpImageMap *image_map,
image_map->output, image_map->output,
NULL); NULL);
} }
else if (gegl_node_get_pad (image_map->operation, "output")) else if (gegl_node_has_pad (image_map->operation, "output"))
{ {
/* if there is only an output pad we probably have a /* if there is only an output pad we probably have a
* source OP, blend its result on top of the original * source OP, blend its result on top of the original