summaryrefslogtreecommitdiff
path: root/atk/atkregistry.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/atkregistry.c
parentcb3f18261daac1fcdbc52a8291bc4139328f1a68 (diff)
downloadat-spi2-core-a6ce03c09f41379777bffaac0a3fd9149699ac80.tar.gz
Updated gtk-doc comment blocks for Oisin Boydell
Diffstat (limited to 'atk/atkregistry.c')
-rw-r--r--atk/atkregistry.c38
1 files changed, 18 insertions, 20 deletions
diff --git a/atk/atkregistry.c b/atk/atkregistry.c
index 89f4a427..d85673e5 100644
--- a/atk/atkregistry.c
+++ b/atk/atkregistry.c
@@ -117,13 +117,12 @@ atk_registry_finalize (GObject *instance)
}
/**
- *atk_registry_set_factory_type:
- *@registry: the #AtkRegistry in which to register the association
- * between an #AtkObjectFactory #GType and an #AtkObject @GType
- *@type: an #AtkObject #GType
- *@factory_type: an #AtkObjectFactory #GType to associate with @type
+ * atk_registry_set_factory_type:
+ * @registry: the #AtkRegistry in which to register the type association
+ * @type: an #AtkObject type
+ * @factory_type: an #AtkObjectFactory type to associate with @type
*
- *Associate an #AtkObjectFactory subclass with a #GType. Note:
+ * Associate an #AtkObjectFactory subclass with a #GType. Note:
* The associated @factory_type will thereafter be responsible for
* the creation of new #AtkObject implementations for instances
* of type @type.
@@ -164,16 +163,15 @@ atk_registry_set_factory_type (AtkRegistry *registry,
}
/**
- *atk_registry_get_factory_type:
- *@registry: an #AtkRegistry
- *@type: a #GType with which to look up the associated #AtkObjectFactory
+ * atk_registry_get_factory_type:
+ * @registry: an #AtkRegistry
+ * @type: a #GType with which to look up the associated #AtkObjectFactory
* subclass
*
- *Provides a GType indicating the #AtkObjectFactory subclass
+ * Provides a #GType indicating the #AtkObjectFactory subclass
* associated with type @type
*
- *Returns: a GType indicating the AtkObjectFactory subclass
- * associated with type @type
+ * Returns: a #GType associated with type @type
**/
GType
atk_registry_get_factory_type (AtkRegistry *registry,
@@ -203,14 +201,14 @@ atk_registry_get_factory_type (AtkRegistry *registry,
}
/**
- *atk_registry_get_factory:
- *@registry: an #AtkRegistry
- *@type: a #GType with which to look up the associated #AtkObjectFactory
+ * atk_registry_get_factory:
+ * @registry: an #AtkRegistry
+ * @type: a #GType with which to look up the associated #AtkObjectFactory
*
- *Returns an #AtkObjectFactory appropriate for creating #AtkObjects
+ * Gets an #AtkObjectFactory appropriate for creating #AtkObjects
* of type @type.
*
- *Returns: an #AtkObjectFactory appropriate for creating #AtkObjects
+ * Returns: an #AtkObjectFactory appropriate for creating #AtkObjects
* of type @type.
**/
AtkObjectFactory*
@@ -253,15 +251,15 @@ atk_registry_get_factory (AtkRegistry *registry,
/**
*atk_get_default_registry:
*
- *Return a default implementation of the #AtkObjectFactory/type
+ * Gets a default implementation of the #AtkObjectFactory/type
* registry.
- *Note: For most toolkit maintainers, this will be the correct
+ * Note: For most toolkit maintainers, this will be the correct
* registry for registering new #AtkObject factories. Following
* a call to this function, maintainers may call atk_registry_set_factory_type()
* to associate an #AtkObjectFactory subclass with the GType of objects
* for whom accessability information will be provided.
*
- *Returns: a default implementation of the #AtkObjectFactory/type
+ * Returns: a default implementation of the #AtkObjectFactory/type
* registry
**/
AtkRegistry*