summaryrefslogtreecommitdiffstats
path: root/src/canvas-base.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-04-23 16:08:05 +0000
committerDavid Robillard <d@drobilla.net>2012-04-23 16:08:05 +0000
commit6f14377a4f6d0ea3d9543e68cd3ced4f37c5cacd (patch)
tree3f9796b3d93aca6fb92b4e7f2861fdbc2fdfc5e5 /src/canvas-base.c
parentb8c14d1c32eea3e58ddeb86d8c81acd12056ca87 (diff)
downloadganv-6f14377a4f6d0ea3d9543e68cd3ced4f37c5cacd.tar.gz
ganv-6f14377a4f6d0ea3d9543e68cd3ced4f37c5cacd.tar.bz2
ganv-6f14377a4f6d0ea3d9543e68cd3ced4f37c5cacd.zip
Fix documentation.
git-svn-id: http://svn.drobilla.net/lad/trunk/ganv@4257 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/canvas-base.c')
-rw-r--r--src/canvas-base.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/canvas-base.c b/src/canvas-base.c
index e78a97d..a521ad6 100644
--- a/src/canvas-base.c
+++ b/src/canvas-base.c
@@ -94,7 +94,7 @@ ganv_item_init(GanvItem* item)
* should use g_object_new() to pass the parameters and
* ganv_item_construct() to set up the canvas item.
*
- * Return value: The newly-created item.
+ * Return value: (transfer full): The newly-created item.
**/
GanvItem*
ganv_item_new(GanvItem* parent, GType type, const gchar* first_arg_name, ...)
@@ -610,7 +610,7 @@ ganv_item_ungrab(GanvItem* item, guint32 etime)
/**
* ganv_item_i2w_affine:
* @item: A canvas item
- * @affine: An affine transformation matrix (return value).
+ * @matrix: An affine transformation matrix (return value).
*
* Gets the affine transform that converts from the item's coordinate system to
* world coordinates.
@@ -677,7 +677,7 @@ ganv_item_i2w(GanvItem* item, double* x, double* y)
/**
* ganv_item_i2c_affine:
* @item: A canvas item.
- * @affine: An affine transformation matrix (return value).
+ * @matrix: An affine transformation matrix (return value).
*
* Gets the affine transform that converts from item-relative coordinates to
* canvas pixel coordinates.
@@ -2026,7 +2026,7 @@ add_idle(GanvCanvasBase* canvas)
*
* Queries the root group of a canvas.
*
- * Return value: The root group of the specified canvas.
+ * Return value: (transfer none): The root group of the specified canvas.
**/
GanvItem*
ganv_canvas_base_root(GanvCanvasBase* canvas)
@@ -2295,8 +2295,8 @@ ganv_canvas_base_update_now(GanvCanvasBase* canvas)
* Looks for the item that is under the specified position, which must be
* specified in world coordinates.
*
- * Return value: The sought item, or NULL if no item is at the specified
- * coordinates.
+ * Return value: (transfer none): The sought item, or NULL if no item is at the
+ * specified coordinates.
**/
GanvItem*
ganv_canvas_base_get_item_at(GanvCanvasBase* canvas, double x, double y)
@@ -2406,7 +2406,7 @@ ganv_canvas_base_request_redraw(GanvCanvasBase* canvas, int x1, int y1, int x2,
/**
* ganv_canvas_base_w2c_affine:
* @canvas: A canvas.
- * @affine: An affine transformation matrix (return value).
+ * @matrix: An affine transformation matrix (return value).
*
* Gets the affine transform that converts from world coordinates to canvas
* pixel coordinates.