app: fix two typos

This commit is contained in:
Massimo Valentini 2013-11-28 19:44:45 +01:00
parent 2e6af22686
commit b81641e25f
2 changed files with 3 additions and 3 deletions

View File

@ -345,7 +345,7 @@ do_layer_blend (GeglBuffer *src_buffer,
for (iy = 0; iy < iter->roi[0].height; iy++)
{
process_roi.x = iter->roi[0].y + iy;
process_roi.y = iter->roi[0].y + iy;
(*apply_func) (in_pixel,
paint_pixel,

View File

@ -676,8 +676,8 @@ gimp_seamless_clone_tool_render_node_update (GimpSeamlessCloneTool *sc)
gimp_item_get_offset (GIMP_ITEM (bg), &off_x, &off_y);
gegl_node_set (sc->sc_node,
"xoff", (gint) sc->xoff - off_y,
"yoff", (gint) sc->yoff - off_x,
"xoff", (gint) sc->xoff - off_x,
"yoff", (gint) sc->yoff - off_y,
NULL);
}