mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
gio docs: lots more fixes
This commit is contained in:
parent
e88d735787
commit
8a7d33024a
@ -93,7 +93,7 @@ GTKDOC_LIBS = \
|
||||
|
||||
# Extra options to supply to gtkdoc-mkdb
|
||||
MKDB_OPTIONS = --output-format=xml --sgml-mode --name-space=g \
|
||||
--ignore-files=libasyncns
|
||||
--ignore-files='libasyncns tests'
|
||||
|
||||
# Images to copy into HTML directory
|
||||
HTML_IMAGES = \
|
||||
|
@ -831,7 +831,7 @@ on_handle_hello_world (MyAppFrobber *interface,
|
||||
<para>
|
||||
Please send bug reports to either the distribution bug tracker
|
||||
or the upstream bug tracker at
|
||||
<ulink url="https://bugzilla.gnome.org/enter_bug.cgi?product=glib"/>.
|
||||
<ulink url="https://bugzilla.gnome.org/enter_bug.cgi?product=glib">https://bugzilla.gnome.org/enter_bug.cgi?product=glib</ulink>.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
|
@ -2318,7 +2318,6 @@ G_CREDENTIALS_CLASS
|
||||
G_IS_CREDENTIALS_CLASS
|
||||
G_CREDENTIALS_GET_CLASS
|
||||
<SUBSECTION Private>
|
||||
GCredentialsPrivate
|
||||
g_credentials_get_type
|
||||
g_credentials_type_get_type
|
||||
</SECTION>
|
||||
@ -2836,7 +2835,6 @@ g_action_group_action_state_changed
|
||||
|
||||
<SUBSECTION Standard>
|
||||
g_action_group_get_type
|
||||
GActionGroupPrivate
|
||||
G_TYPE_ACTION_GROUP
|
||||
G_IS_ACTION_GROUP
|
||||
G_ACTION_GROUP_GET_IFACE
|
||||
@ -2885,13 +2883,9 @@ g_simple_action_set_enabled
|
||||
g_simple_action_set_state
|
||||
|
||||
<SUBSECTION Standard>
|
||||
GSimpleActionPrivate
|
||||
g_simple_action_get_type
|
||||
G_TYPE_SIMPLE_ACTION
|
||||
G_IS_SIMPLE_ACTION
|
||||
G_SIMPLE_ACTION_CLASS
|
||||
G_SIMPLE_ACTION_GET_CLASS
|
||||
G_IS_SIMPLE_ACTION_CLASS
|
||||
G_SIMPLE_ACTION
|
||||
</SECTION>
|
||||
|
||||
@ -3231,7 +3225,6 @@ g_tls_password_flags_get_type
|
||||
g_tls_password_get_type
|
||||
G_IS_TLS_PASSWORD
|
||||
G_TLS_PASSWORD
|
||||
G_TLS_PASSWORD_GET_INTERFACE
|
||||
G_TYPE_TLS_PASSWORD
|
||||
G_TYPE_TLS_PASSWORD_FLAGS
|
||||
</SECTION>
|
||||
@ -3257,16 +3250,6 @@ G_TYPE_TLS_INTERACTION_RESULT
|
||||
GTlsInteractionPrivate
|
||||
g_tls_interaction_get_type
|
||||
g_tls_interaction_result_get_type
|
||||
GTlsConsoleInteraction
|
||||
GTlsConsoleInteractionClass
|
||||
G_IS_TLS_CONSOLE_INTERACTION
|
||||
G_IS_TLS_CONSOLE_INTERACTION_CLASS
|
||||
g_tls_console_interaction_new
|
||||
G_TLS_CONSOLE_INTERACTION
|
||||
G_TYPE_TLS_CONSOLE_INTERACTION
|
||||
G_TLS_CONSOLE_INTERACTION_CLASS
|
||||
G_TLS_CONSOLE_INTERACTION_GET_CLASS
|
||||
g_tls_console_interaction_get_type
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
@ -3283,9 +3266,6 @@ G_IS_DBUS_INTERFACE
|
||||
G_TYPE_DBUS_INTERFACE
|
||||
g_dbus_interface_get_type
|
||||
G_DBUS_INTERFACE_GET_IFACE
|
||||
<SUBSECTION Private>
|
||||
g_dbus_object_lookup_with_typecheck
|
||||
g_dbus_object_peek_with_typecheck
|
||||
</SECTION>
|
||||
|
||||
|
||||
|
@ -84,6 +84,7 @@ g_tls_client_connection_get_type
|
||||
g_tls_connection_get_type
|
||||
g_tls_database_get_type
|
||||
g_tls_file_database_get_type
|
||||
g_tls_password_get_type
|
||||
g_tls_server_connection_get_type
|
||||
g_unix_connection_get_type
|
||||
g_unix_fd_list_get_type
|
||||
|
@ -579,7 +579,7 @@ BUILT_EXTRA_DIST = \
|
||||
|
||||
# This is read by gobject-introspection/misc/ and gtk-doc
|
||||
gio-public-headers.txt: Makefile
|
||||
echo $(gioinclude_HEADERS) > $@.tmp && mv $@.tmp $@
|
||||
echo $(gioinclude_HEADERS) $(giowin32include_HEADERS) $(giounixinclude_HEADERS) > $@.tmp && mv $@.tmp $@
|
||||
|
||||
CLEANFILES = gio-public-headers.txt
|
||||
|
||||
|
@ -79,6 +79,7 @@ typedef struct _GAppLaunchContextPrivate GAppLaunchContextPrivate;
|
||||
* @do_delete: Deletes a #GAppInfo. Since 2.20
|
||||
* @get_commandline: Gets the commandline for the #GAppInfo. Since 2.20
|
||||
* @get_display_name: Gets the display name for the #GAppInfo. Since 2.24
|
||||
* @set_as_last_used_for_type: Sets the application as the last used. See g_app_info_set_as_last_used_for_type().
|
||||
*
|
||||
* Application Information interface, for operating system portability.
|
||||
*/
|
||||
|
@ -895,8 +895,6 @@ g_application_get_inactivity_timeout (GApplication *application)
|
||||
* used for next time g_application_release() drops the use count to
|
||||
* zero. Any timeouts currently in progress are not impacted.
|
||||
*
|
||||
* Returns: the timeout, in milliseconds
|
||||
*
|
||||
* Since: 2.28
|
||||
**/
|
||||
void
|
||||
|
@ -25,7 +25,7 @@
|
||||
#include "gasynchelper.h"
|
||||
|
||||
|
||||
/**
|
||||
/*< private >
|
||||
* SECTION:gasynchelper
|
||||
* @short_description: Asynchronous Helper Functions
|
||||
* @include: gio/gio.h
|
||||
|
Loading…
Reference in New Issue
Block a user