docs: Add GIOModuleScope and GIOModuleScopeFlags
authorDavid King <amigadave@amigadave.com>
Sat, 18 Feb 2012 11:10:00 +0000 (11:10 +0000)
committerDavid King <amigadave@amigadave.com>
Sat, 18 Feb 2012 11:11:52 +0000 (11:11 +0000)
Fix some typos and add GIOModuleScope and GIOModuleScopeFlags to
gio-sections.txt.

docs/reference/gio/gio-sections.txt
gio/gioenums.h
gio/giomodule.c

index 65d86ac..71c597b 100644 (file)
@@ -1482,6 +1482,8 @@ g_desktop_app_info_lookup_get_type
 <FILE>giomodule</FILE>
 <TITLE>GIOModule</TITLE>
 GIOModule
+GIOModuleScope
+GIOModuleScopeFlags
 g_io_module_new
 g_io_module_scope_block
 g_io_module_scope_free
index b2b7861..23a2f76 100644 (file)
@@ -1546,8 +1546,8 @@ typedef enum {
 
 /**
  * GIOModuleScopeFlags:
- * @G_IO_MODULES_SCOPE_NONE: No module scan flags
- * @G_IO_MODULES_SCOPE_BLOCK_DUPLICATES: When using this scope to load or
+ * @G_IO_MODULE_SCOPE_NONE: No module scan flags
+ * @G_IO_MODULE_SCOPE_BLOCK_DUPLICATES: When using this scope to load or
  *     scan modules, automatically block a modules which has the same base
  *     basename as previously loaded module.
  *
index 02c2db6..4afdedd 100644 (file)
@@ -139,7 +139,7 @@ struct _GIOModuleScope {
  * Create a new scope for loading of IO modules. A scope can be used for
  * blocking duplicate modules, or blocking a module you don't want to load.
  *
- * Specify the %G_IO_MODULES_SCOPE_BLOCK_DUPLICATES flag to block modules
+ * Specify the %G_IO_MODULE_SCOPE_BLOCK_DUPLICATES flag to block modules
  * which have the same base name as a module that has already been seen
  * in this scope.
  *