Fix documentation. Document g_log_domain_glib, gunichar, gunichar2,

* gobject/gsourceclosure.c (g_source_set_closure): Fix documentation.
        * glib/tmpl/messages.sgml, glib/tmpl/unicode.sgml:
        Document g_log_domain_glib, gunichar, gunichar2, GUnicodeType,
        GUnicodeBreakType.
This commit is contained in:
Matthias Clasen 2001-10-30 23:56:30 +00:00
parent bece452f40
commit eb17b20bd2
13 changed files with 52 additions and 12 deletions

View File

@ -1,3 +1,7 @@
2001-10-31 Matthias Clasen <matthiasc@poet.de>
* gobject/gsourceclosure.c (g_source_set_closure): Fix documentation.
2001-10-30 Tor Lillqvist <tml@iki.fi>
* glib-zip.in: New file, used to build distribution packages for

View File

@ -1,3 +1,7 @@
2001-10-31 Matthias Clasen <matthiasc@poet.de>
* gobject/gsourceclosure.c (g_source_set_closure): Fix documentation.
2001-10-30 Tor Lillqvist <tml@iki.fi>
* glib-zip.in: New file, used to build distribution packages for

View File

@ -1,3 +1,7 @@
2001-10-31 Matthias Clasen <matthiasc@poet.de>
* gobject/gsourceclosure.c (g_source_set_closure): Fix documentation.
2001-10-30 Tor Lillqvist <tml@iki.fi>
* glib-zip.in: New file, used to build distribution packages for

View File

@ -1,3 +1,7 @@
2001-10-31 Matthias Clasen <matthiasc@poet.de>
* gobject/gsourceclosure.c (g_source_set_closure): Fix documentation.
2001-10-30 Tor Lillqvist <tml@iki.fi>
* glib-zip.in: New file, used to build distribution packages for

View File

@ -1,3 +1,7 @@
2001-10-31 Matthias Clasen <matthiasc@poet.de>
* gobject/gsourceclosure.c (g_source_set_closure): Fix documentation.
2001-10-30 Tor Lillqvist <tml@iki.fi>
* glib-zip.in: New file, used to build distribution packages for

View File

@ -1,3 +1,7 @@
2001-10-31 Matthias Clasen <matthiasc@poet.de>
* gobject/gsourceclosure.c (g_source_set_closure): Fix documentation.
2001-10-30 Tor Lillqvist <tml@iki.fi>
* glib-zip.in: New file, used to build distribution packages for

View File

@ -1,3 +1,7 @@
2001-10-31 Matthias Clasen <matthiasc@poet.de>
* gobject/gsourceclosure.c (g_source_set_closure): Fix documentation.
2001-10-30 Tor Lillqvist <tml@iki.fi>
* glib-zip.in: New file, used to build distribution packages for

View File

@ -1,3 +1,7 @@
2001-10-31 Matthias Clasen <matthiasc@poet.de>
* gobject/gsourceclosure.c (g_source_set_closure): Fix documentation.
2001-10-30 Tor Lillqvist <tml@iki.fi>
* glib-zip.in: New file, used to build distribution packages for

View File

@ -1,3 +1,9 @@
2001-10-31 Matthias Clasen <matthiasc@poet.de>
* glib/tmpl/messages.sgml, glib/tmpl/unicode.sgml:
Document g_log_domain_glib, gunichar, gunichar2, GUnicodeType,
GUnicodeBreakType.
Fri Oct 26 11:42:50 2001 Owen Taylor <otaylor@redhat.com>
* */Makefile.am: Remove $(srcdir)/html before building

View File

@ -371,8 +371,6 @@ g_main_context_pending().
@funcs:
@user_data:
@Returns:
<!-- # Unused Parameters # -->
@source_data:
<!-- ##### FUNCTION g_main_context_wakeup ##### -->
@ -669,9 +667,9 @@ whatever additional parameters are needed for this type of event source.
</row>
<row>
<entry>destroy</entry>
<entry>finalize</entry>
<entry>
Called when the source is destroyed.
Called when the source is finalized.
</entry>
</row>
</tbody></tgroup></informaltable>

View File

@ -40,7 +40,7 @@ INCLUDES = \
<!-- ##### VARIABLE g_log_domain_glib ##### -->
<para>
The log domain used for messages logged by GLib itself.
</para>

View File

@ -16,13 +16,13 @@ Unicode Manipulation
<!-- ##### TYPEDEF gunichar ##### -->
<para>
A type which can hold any UCS-4 character code.
</para>
<!-- ##### TYPEDEF gunichar2 ##### -->
<para>
A type which can hold any UTF-16 character code.
</para>
@ -217,7 +217,9 @@ Unicode Manipulation
<!-- ##### ENUM GUnicodeType ##### -->
<para>
These are the possible character classifications.
See <ulink url="http://www.unicode.org/Public/UNIDATA/UnicodeData.html"
>http://www.unicode.org/Public/UNIDATA/UnicodeData.html</ulink>.
</para>
@G_UNICODE_CONTROL:
@ -262,7 +264,9 @@ Unicode Manipulation
<!-- ##### ENUM GUnicodeBreakType ##### -->
<para>
These are the possible line break classifications.
See <ulink url="http://www.unicode.org/unicode/reports/tr14/"
>http://www.unicode.org/unicode/reports/tr14/</ulink>.
</para>
@G_UNICODE_BREAK_MANDATORY:

View File

@ -155,14 +155,14 @@ static GSourceCallbackFuncs closure_callback_funcs = {
};
/**
* g_source_set_callback:
* g_source_set_closure:
* @source: the source
* @func: a #GClosure
*
* Set the callback for a source as a #GClosure.
*
* If the source is not one of the standard GLib types, the closure_callback
* and closure_marshal fields of the GSourceFuncs structure must have been
* If the source is not one of the standard GLib types, the @closure_callback
* and @closure_marshal fields of the GSourceFuncs structure must have been
* filled in with pointers to appropriate functions.
**/
void