summaryrefslogtreecommitdiff
path: root/atk/atkselection.c
diff options
context:
space:
mode:
authorLucy Brophy <lbrophy@src.gnome.org>2001-05-21 13:25:37 +0000
committerLucy Brophy <lbrophy@src.gnome.org>2001-05-21 13:25:37 +0000
commita6ce03c09f41379777bffaac0a3fd9149699ac80 (patch)
treeaf7f57250c66db2dc0669115cd28fbc60a525068 /atk/atkselection.c
parentcb3f18261daac1fcdbc52a8291bc4139328f1a68 (diff)
downloadatk-a6ce03c09f41379777bffaac0a3fd9149699ac80.tar.gz
Updated gtk-doc comment blocks for Oisin Boydell
Diffstat (limited to 'atk/atkselection.c')
-rwxr-xr-xatk/atkselection.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/atk/atkselection.c b/atk/atkselection.c
index 2522bb6..54ee722 100755
--- a/atk/atkselection.c
+++ b/atk/atkselection.c
@@ -41,7 +41,7 @@ atk_selection_get_type ()
/**
* atk_selection_add_selection:
- * @selection: a GObject instance that implements AtkSelectionIface
+ * @selection: a #GObject instance that implements AtkSelectionIface
* @i: a #gint specifying an accessible child of @selection
*
* Adds the specified accessible child of the object to the
@@ -64,7 +64,7 @@ atk_selection_add_selection (AtkSelection *obj,
/**
* atk_selection_clear_selection:
- * @selection: a GObject instance that implements AtkSelectionIface
+ * @selection: a #GObject instance that implements AtkSelectionIface
*
* Clears the selection in the object so that no children in the object
* are selected.
@@ -85,18 +85,18 @@ atk_selection_clear_selection (AtkSelection *obj)
/**
* atk_selection_ref_selection:
- * @selection: a GObject instance that implements AtkSelectionIface
+ * @selection: a #GObject instance that implements AtkSelectionIface
* @i: a #gint specifying an accessible child of @selection
*
* Gets a reference to the accessible object representing the specified
- * selected * child of the object.
+ * selected child of the object.
* Note: callers should not rely on %NULL or on a zero value for
* indication of whether AtkSelectionIface is implemented, they should
* use type checking/interface checking macros or the
* atk_get_accessible_value() convenience method.
*
- * Returns: a AtkObject* representing the selected accessible , or NULL
- * if value does not implement this interface.
+ * Returns: an #AtkObject representing the selected accessible , or %NULL
+ * if @selection does not implement this interface.
**/
AtkObject*
atk_selection_ref_selection (AtkSelection *obj,
@@ -117,7 +117,7 @@ atk_selection_ref_selection (AtkSelection *obj,
/**
* atk_selection_get_selection_count:
- * @selection: a GObject instance that implements AtkSelectionIface
+ * @selection: a #GObject instance that implements AtkSelectionIface
*
* Gets the number of accessible children currently selected.
* Note: callers should not rely on %NULL or on a zero value for
@@ -126,7 +126,7 @@ atk_selection_ref_selection (AtkSelection *obj,
* atk_get_accessible_value() convenience method.
*
* Returns: a gint representing the number of items selected, or 0
- * if value does not implement this interface.
+ * if @selection does not implement this interface.
**/
gint
atk_selection_get_selection_count (AtkSelection *obj)
@@ -146,7 +146,7 @@ atk_selection_get_selection_count (AtkSelection *obj)
/**
* atk_selection_is_child_selected:
- * @selection: a GObject instance that implements AtkSelectionIface
+ * @selection: a #GObject instance that implements AtkSelectionIface
* @i: a #gint specifying an accessible child of @selection
*
* Determines if the current child of this object is selected
@@ -156,7 +156,7 @@ atk_selection_get_selection_count (AtkSelection *obj)
* atk_get_accessible_value() convenience method.
*
* Returns: a gboolean representing the specified child is selected, or 0
- * if value does not implement this interface.
+ * if @selection does not implement this interface.
**/
gboolean
atk_selection_is_child_selected (AtkSelection *obj,
@@ -177,7 +177,7 @@ atk_selection_is_child_selected (AtkSelection *obj,
/**
* atk_selection_remove_selection:
- * @selection: a GObject instance that implements AtkSelectionIface
+ * @selection: a #GObject instance that implements AtkSelectionIface
* @i: a #gint specifying an accessible child of @selection
*
* Removes the specified child of the object from the object's selection.
@@ -199,7 +199,7 @@ atk_selection_remove_selection (AtkSelection *obj,
/**
* atk_selection_select_all_selection:
- * @selection: a GObject instance that implements AtkSelectionIface
+ * @selection: a #GObject instance that implements AtkSelectionIface
*
* Causes every child of the object to be selected if the object
* supports multiple selections.