summaryrefslogtreecommitdiffstats
path: root/ganv
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-12-13 23:35:45 +0000
committerDavid Robillard <d@drobilla.net>2011-12-13 23:35:45 +0000
commit61cae4344c83e4439d6ed57f16082b0440f26581 (patch)
tree739749489aafe5955aba7a6a78629b439ed381b3 /ganv
parent677f884681b567377304b3d5c55a4eb02899f2de (diff)
downloadganv-61cae4344c83e4439d6ed57f16082b0440f26581.tar.gz
ganv-61cae4344c83e4439d6ed57f16082b0440f26581.tar.bz2
ganv-61cae4344c83e4439d6ed57f16082b0440f26581.zip
Update comments to reflect reality of group's demoted status.
git-svn-id: http://svn.drobilla.net/lad/trunk/ganv@3871 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'ganv')
-rw-r--r--ganv/canvas-base.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/ganv/canvas-base.h b/ganv/canvas-base.h
index 8f6d39c..df1c221 100644
--- a/ganv/canvas-base.h
+++ b/ganv/canvas-base.h
@@ -40,13 +40,13 @@ typedef struct _GanvItemClass GanvItemClass;
/* GanvItem - base item class for canvas items
*
- * All canvas items are derived from GanvItem. The only information a
- * GanvItem contains is its parent canvas, its parent canvas item group,
- * its bounding box in world coordinates, and its current affine transformation.
+ * All canvas items are derived from GanvItem. The only information a GanvItem
+ * contains is its parent canvas, its parent canvas item, its bounding box in
+ * world coordinates, and its current affine transformation.
*
- * Items inside a canvas are organized in a tree of GanvItemGroup nodes
- * and GanvItem leaves. Each canvas has a single root group, which can
- * be obtained with the ganv_canvas_base_get_root() function.
+ * Items inside a canvas are organized in a tree, where leaves are items
+ * without any children. Each canvas has a single root item, which can be
+ * obtained with the ganv_canvas_base_get_root() function.
*
* The abstract GanvItem class does not have any configurable or
* queryable attributes.
@@ -252,7 +252,7 @@ void ganv_item_request_update(GanvItem* item);
struct _GanvCanvasBase {
GtkLayout layout;
- /* Root canvas group */
+ /* Root canvas item */
GanvItem* root;
/* Region that needs redrawing, stored as a microtile array */