- renamed patches to include version number - licence correction OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Goo-Canvas?expand=0&rev=16
73 lines
3.1 KiB
Diff
73 lines
3.1 KiB
Diff
Index: xs/goocanvas.xs
|
|
===================================================================
|
|
--- xs/goocanvas.xs.orig
|
|
+++ xs/goocanvas.xs
|
|
@@ -51,11 +51,11 @@ MODULE = Goo::Canvas PACKAGE = Goo::Can
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
-GTK+ doesn't has an built-in canvas widget. GooCanvas is wonderful.
|
|
+GTK+ doesn't have a built-in canvas widget. GooCanvas is wonderful.
|
|
It is easy to use and has powerful and extensible methods to create items
|
|
-in canvas. Just try it.
|
|
+in a canvas. Just try it.
|
|
|
|
-For more documents, please read GooCanvas Manual and the demo programs
|
|
+For more documentation, please read the GooCanvas Manual and the demo programs
|
|
provided in the source distribution in both perl-Goo::Canvas and
|
|
GooCanvas.
|
|
|
|
@@ -229,7 +229,7 @@ goo_canvas_convert_from_item_space(canva
|
|
y
|
|
|
|
=for apidoc
|
|
-=for arg cursor (GdkCursor) the cursor to display during the grab, or undef means no change
|
|
+=for arg cursor (GdkCursor) the cursor to display during the grab; undef means no change
|
|
=cut
|
|
GdkGrabStatus
|
|
goo_canvas_pointer_grab(canvas, item, event_mask, cursor, time)
|
|
@@ -326,7 +326,7 @@ BOOT:
|
|
MODULE = Goo::Canvas PACKAGE = Goo::Canvas::Points PREFIX = goo_canvas_points_
|
|
|
|
=for apidoc
|
|
-Create GooCanvasPoints from a Perl array. The points is an array reference
|
|
+Create GooCanvasPoints from a Perl array. The points are array references
|
|
that contain data like [x1, y1, x2, y2, ...]
|
|
=cut
|
|
GooCanvasPoints*
|
|
@@ -349,8 +349,8 @@ goo_canvas_points_new(class, points)
|
|
MODULE = Goo::Canvas PACKAGE = Goo::Canvas::LineDash PREFIX = goo_canvas_line_dash_
|
|
|
|
=for apidoc
|
|
-Create GooCanvasLineDash from a perl array. The dashes is an array reference
|
|
-contains numbers.
|
|
+Create GooCanvasLineDash from a perl array. The dashes are array references
|
|
+that contain numbers.
|
|
=cut
|
|
GooCanvasLineDash*
|
|
goo_canvas_line_dash_new(class, dashes)
|
|
Index: xs/goocanvaspolyline.xs
|
|
===================================================================
|
|
--- xs/goocanvaspolyline.xs.orig
|
|
+++ xs/goocanvaspolyline.xs
|
|
@@ -3,7 +3,8 @@
|
|
MODULE = Goo::Canvas::Polyline PACKAGE = Goo::Canvas::Polyline PREFIX = goo_canvas_polyline_
|
|
|
|
=for apidoc
|
|
-=for arg points (AV) The points is an array reference that contains a flat points coordinates. If you want create a polyline without points, pass an empty array refer or undef.
|
|
+=for arg points (AV) The points are array references that contain flat point coordinates.
|
|
+=If you want create a polyline without points, pass an empty array reference or undef.
|
|
=cut
|
|
GooCanvasItem*
|
|
goo_canvas_polyline_new(class, parent, close_path, points, ...)
|
|
@@ -51,7 +52,8 @@ goo_canvas_polyline_new_line(class, pare
|
|
MODULE = Goo::Canvas::Polyline PACKAGE = Goo::Canvas::PolylineModel PREFIX = goo_canvas_polyline_model_
|
|
|
|
=for apidoc
|
|
-=for arg points (AV) The points is an array reference that contains a flat points coordinates. If you want create a polyline without points, pass an empty array refer or undef.
|
|
+=for arg points (AV) The points are array references that contain a flat point coordinates.
|
|
+=If you want create a polyline without points, pass an empty array referer or undef.
|
|
=cut
|
|
GooCanvasItemModel*
|
|
goo_canvas_polyline_model_new(class, parent, close_path, points, ...)
|