diff options
author | Matthias Clasen <mclasen@redhat.com> | 2010-10-25 08:42:36 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2010-10-25 08:42:36 -0400 |
commit | 11a59404d5623d65e0d09c555ef2d4be50e4023b (patch) | |
tree | 537b2a77355d6a92329430e54f6c7d010d629f4d | |
parent | d10a04b5330c6c4ef23a4e7871c8ced0c8343250 (diff) |
More documentation fixups2.27.1
-rw-r--r-- | docs/reference/gio/gio-sections.txt | 14 | ||||
-rw-r--r-- | gio/gapplication.h | 2 | ||||
-rw-r--r-- | gio/gdatainputstream.c | 2 |
3 files changed, 5 insertions, 13 deletions
diff --git a/docs/reference/gio/gio-sections.txt b/docs/reference/gio/gio-sections.txt index 24f5ca1d0..df4c1b167 100644 --- a/docs/reference/gio/gio-sections.txt +++ b/docs/reference/gio/gio-sections.txt @@ -1388,9 +1388,6 @@ g_desktop_app_info_new g_desktop_app_info_get_filename g_desktop_app_info_get_is_hidden g_desktop_app_info_set_desktop_env -GDesktopAppInfoLookup -G_DESKTOP_APP_INFO_LOOKUP_EXTENSION_POINT_NAME -g_desktop_app_info_lookup_get_default_for_uri_scheme <SUBSECTION Standard> GDesktopAppInfoClass G_TYPE_DESKTOP_APP_INFO @@ -1399,14 +1396,8 @@ G_DESKTOP_APP_INFO_CLASS G_IS_DESKTOP_APP_INFO G_IS_DESKTOP_APP_INFO_CLASS G_DESKTOP_APP_INFO_GET_CLASS -GDesktopAppInfoLookupIface -G_DESKTOP_APP_INFO_LOOKUP -G_TYPE_DESKTOP_APP_INFO_LOOKUP -G_DESKTOP_APP_INFO_LOOKUP_GET_IFACE -G_IS_DESKTOP_APP_INFO_LOOKUP <SUBSECTION Private> g_desktop_app_info_get_type -g_desktop_app_info_lookup_get_type </SECTION> <SECTION> @@ -2717,7 +2708,6 @@ g_application_command_line_get_platform_data g_application_command_line_set_exit_status g_application_command_line_get_exit_status <SUBSECTION> -g_application_command_line_output g_application_command_line_print g_application_command_line_printerr <SUBSECTION Standard> @@ -2766,7 +2756,7 @@ g_action_group_get_type GActionGroupPrivate G_TYPE_ACTION_GROUP G_IS_ACTION_GROUP -G_ACTION_GROUP_GET_INTERFACE +G_ACTION_GROUP_GET_IFACE G_ACTION_GROUP </SECTION> @@ -2793,7 +2783,7 @@ g_action_activate g_action_get_type G_TYPE_ACTION G_IS_ACTION -G_ACTION_GET_INTERFACE +G_ACTION_GET_IFACE G_ACTION </SECTION> diff --git a/gio/gapplication.h b/gio/gapplication.h index 8a28e9308..da9a2654e 100644 --- a/gio/gapplication.h +++ b/gio/gapplication.h @@ -152,7 +152,7 @@ void g_application_release (GApplic void g_application_activate (GApplication *application); void g_application_open (GApplication *application, - GFile **file, + GFile **files, gint n_files, const gchar *hint); diff --git a/gio/gdatainputstream.c b/gio/gdatainputstream.c index 7743d566e..3d4860ec0 100644 --- a/gio/gdatainputstream.c +++ b/gio/gdatainputstream.c @@ -1329,6 +1329,8 @@ g_data_input_stream_read_upto (GDataInputStream *stream, * @stop_chars: characters to terminate the read * @stop_chars_len: length of @stop_chars. May be -1 if @stop_chars is * nul-terminated + * @io_priority: the <link linkend="io-priority">I/O priority</link> + * of the request. * @cancellable: optional #GCancellable object, %NULL to ignore * @callback: callback to call when the request is satisfied * @user_data: the data to pass to callback function |