summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlejandro Piñeiro <apinheiro@igalia.com>2014-02-18 17:39:43 +0100
committerAlejandro Piñeiro <apinheiro@igalia.com>2014-02-18 17:39:43 +0100
commit93d52d1242c6a59f945225e7011208f4ddc6406c (patch)
tree9ed3cc62e3d6c491d4c5bfbb0ba8d3e8faa5fa2f
parenta3b6bb15885b5c59fc7bf2283bbb1fb06b602ba7 (diff)
downloadatk-93d52d1242c6a59f945225e7011208f4ddc6406c.tar.gz
doc: move AtkRegistry section to the source file
So now is properly scanned by gtk-doc
-rw-r--r--atk/atkregistry.c15
-rw-r--r--atk/atkregistry.h15
2 files changed, 15 insertions, 15 deletions
diff --git a/atk/atkregistry.c b/atk/atkregistry.c
index fb732c9..5641073 100644
--- a/atk/atkregistry.c
+++ b/atk/atkregistry.c
@@ -20,6 +20,21 @@
#include "atkregistry.h"
#include "atknoopobjectfactory.h"
+/**
+ * SECTION:atkregistry
+ * @Short_description: An object used to store the GType of the
+ * factories used to create an accessible object for an object of a
+ * particular GType.
+ * @Title:AtkRegistry
+ *
+ * The AtkRegistry is normally used to create appropriate ATK "peers"
+ * for user interface components. Application developers usually need
+ * only interact with the AtkRegistry by associating appropriate ATK
+ * implementation classes with GObject classes via the
+ * atk_registry_set_factory_type call, passing the appropriate GType
+ * for application custom widget classes.
+ */
+
static AtkRegistry *default_registry = NULL;
static void atk_registry_init (AtkRegistry *instance,
diff --git a/atk/atkregistry.h b/atk/atkregistry.h
index e6cf7d6..eb16403 100644
--- a/atk/atkregistry.h
+++ b/atk/atkregistry.h
@@ -27,21 +27,6 @@
#include <glib-object.h>
#include "atkobjectfactory.h"
-/**
- * SECTION:atkobjectregistry
- * @Short_description: An object used to store the GType of the
- * factories used to create an accessible object for an object of a
- * particular GType.
- * @Title:AtkObjectRegistry
- *
- * The AtkRegistry is normally used to create appropriate ATK "peers"
- * for user interface components. Application developers usually need
- * only interact with the AtkRegistry by associating appropriate ATK
- * implementation classes with GObject classes via the
- * atk_registry_set_factory_type call, passing the appropriate GType
- * for application custom widget classes.
- */
-
G_BEGIN_DECLS
#define ATK_TYPE_REGISTRY (atk_registry_get_type ())