app: change gimp_tool_widget_add_corner() to take x, y, width, height

instead of x1, y1, x2, y2.
This commit is contained in:
Michael Natterer
2017-06-26 14:13:07 +02:00
parent 14795c1f72
commit 1ebf905ed3
2 changed files with 14 additions and 14 deletions

View File

@ -193,13 +193,13 @@ GimpCanvasItem * gimp_tool_widget_add_handle (GimpToolWidget *widget,
gint height,
GimpHandleAnchor anchor);
GimpCanvasItem * gimp_tool_widget_add_corner (GimpToolWidget *widget,
gdouble x1,
gdouble y1,
gdouble x2,
gdouble y2,
gdouble x,
gdouble y,
gdouble width,
gdouble height,
GimpHandleAnchor anchor,
gint width,
gint height,
gint corner_width,
gint corner_height,
gboolean outside);
GimpCanvasItem * gimp_tool_widget_add_rectangle_guides