From: David King Date: Sat, 18 Feb 2012 11:10:00 +0000 (+0000) Subject: docs: Add GIOModuleScope and GIOModuleScopeFlags X-Git-Tag: 2.31.18~36 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b50863aafac23b2d19ae69dd9a6d243a15075dc5;p=platform%2Fupstream%2Fglib.git docs: Add GIOModuleScope and GIOModuleScopeFlags Fix some typos and add GIOModuleScope and GIOModuleScopeFlags to gio-sections.txt. --- diff --git a/docs/reference/gio/gio-sections.txt b/docs/reference/gio/gio-sections.txt index 65d86ac..71c597b 100644 --- a/docs/reference/gio/gio-sections.txt +++ b/docs/reference/gio/gio-sections.txt @@ -1482,6 +1482,8 @@ g_desktop_app_info_lookup_get_type giomodule GIOModule GIOModule +GIOModuleScope +GIOModuleScopeFlags g_io_module_new g_io_module_scope_block g_io_module_scope_free diff --git a/gio/gioenums.h b/gio/gioenums.h index b2b7861..23a2f76 100644 --- a/gio/gioenums.h +++ b/gio/gioenums.h @@ -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. * diff --git a/gio/giomodule.c b/gio/giomodule.c index 02c2db6..4afdedd 100644 --- a/gio/giomodule.c +++ b/gio/giomodule.c @@ -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. *