=== Released 2.3.3 ===

Tue Feb 24 14:09:21 2004  Owen Taylor  <otaylor@redhat.com>

        * === Released 2.3.3 ===

        * configure.in: Version 2.3.3, interface age 0.
This commit is contained in:
Owen Taylor
2004-02-24 19:27:19 +00:00
committed by Owen Taylor
parent 428db8e6d2
commit 81e39b7858
35 changed files with 733 additions and 258 deletions

View File

@@ -1,3 +1,9 @@
Tue Feb 24 14:09:21 2004 Owen Taylor <otaylor@redhat.com>
* === Released 2.3.3 ===
* glib/glib-sections.txt: Updates.
Sun Feb 22 00:59:11 2004 Matthias Clasen <maclas@gmx.de>
* glib/tmpl/trees-nary.sgml: Document GCopyFunc.

View File

@@ -287,3 +287,7 @@ gchar c
<RETURNS>gboolean</RETURNS>
gchar c
</FUNCTION>
<STRUCT>
<NAME>GIConv</NAME>
</STRUCT>

View File

@@ -40,7 +40,6 @@ gsize
gssize
<SUBSECTION Private>
gldouble
GLIB_SIZEOF_VOID_P
GLIB_SIZEOF_LONG
GLIB_SIZEOF_SIZE_T
@@ -83,6 +82,9 @@ G_MININT64
G_MAXINT64
G_MAXUINT64
<SUBSECTION>
G_MAXSIZE
<SUBSECTION>
G_MINFLOAT
G_MAXFLOAT
@@ -324,6 +326,7 @@ G_UNLIKELY
<SUBSECTION>
G_STRLOC
G_STRFUNC
<SUBSECTION>
G_GINT16_MODIFIER
@@ -335,6 +338,9 @@ G_GUINT32_FORMAT
G_GINT64_MODIFIER
G_GINT64_FORMAT
G_GUINT64_FORMAT
G_GSIZE_MODIFIER
G_GSIZE_FORMAT
G_GSSIZE_FORMAT
<SUBSECTION Private>
GLIB_VAR
@@ -1500,17 +1506,41 @@ g_slist_pop_allocator
GQueue
g_queue_new
g_queue_free
g_queue_is_empty
g_queue_get_length
g_queue_reverse
g_queue_copy
g_queue_foreach
g_queue_find
g_queue_find_custom
g_queue_sort
g_queue_push_head
g_queue_push_tail
g_queue_push_nth
g_queue_pop_head
g_queue_pop_tail
g_queue_is_empty
g_queue_pop_nth
g_queue_peek_head
g_queue_peek_tail
g_queue_peek_nth
g_queue_index
g_queue_remove
g_queue_remove_all
g_queue_insert_before
g_queue_insert_after
g_queue_insert_sorted
g_queue_push_head_link
g_queue_push_tail_link
g_queue_push_nth_link
g_queue_pop_head_link
g_queue_pop_tail_link
g_queue_pop_nth_link
g_queue_peek_head_link
g_queue_peek_tail_link
g_queue_peek_nth_link
g_queue_link_index
g_queue_unlink
g_queue_delete_link
</SECTION>
<SECTION>
@@ -1538,6 +1568,7 @@ g_hash_table_size
g_hash_table_lookup
g_hash_table_lookup_extended
g_hash_table_foreach
g_hash_table_find
GHFunc
g_hash_table_remove
g_hash_table_steal

View File

@@ -45,6 +45,14 @@ convert strings between different character sets using <function>iconv()</functi
@Returns:
<!-- ##### STRUCT GIConv ##### -->
<para>
The <structname>GIConv</structname> struct wraps an
<function>iconv()</function> conversion descriptor. It contains private data
and should only be accessed using the following functions.
</para>
<!-- ##### FUNCTION g_convert_with_iconv ##### -->
<para>

View File

@@ -66,14 +66,6 @@ Specifies the type of function passed to g_set_error_handler().
@hook_list:
@hook:
<!-- ##### STRUCT GIConv ##### -->
<para>
The <structname>GIConv</structname> struct wraps an
<function>iconv()</function> conversion descriptor. It contains private data
and should only be accessed using the following functions.
</para>
<!-- ##### ENUM GIOFileMode ##### -->
<para>

View File

@@ -178,6 +178,17 @@ equality. The function should return %TRUE if both values are equal and
@user_data:
<!-- ##### FUNCTION g_hash_table_find ##### -->
<para>
</para>
@hash_table:
@predicate:
@user_data:
@Returns:
<!-- ##### USER_FUNCTION GHFunc ##### -->
<para>
Specifies the type of the function passed to g_hash_table_foreach().

View File

@@ -171,6 +171,13 @@ The maximum value which can be held in a #guint64.
<!-- ##### MACRO G_MAXSIZE ##### -->
<para>
</para>
<!-- ##### MACRO G_MINFLOAT ##### -->
<para>
The minimum positive value which can be held in a #gfloat.

View File

@@ -286,6 +286,13 @@ Expands to a string identifying the current code position.
<!-- ##### MACRO G_STRFUNC ##### -->
<para>
</para>
<!-- ##### MACRO G_GINT16_MODIFIER ##### -->
<para>
The platform dependent length modifier for constructing printf() conversion
@@ -416,3 +423,24 @@ recommended for parsing anyway; consider using g_strtoull() instead.
<!-- ##### MACRO G_GSIZE_MODIFIER ##### -->
<para>
</para>
<!-- ##### MACRO G_GSIZE_FORMAT ##### -->
<para>
</para>
<!-- ##### MACRO G_GSSIZE_FORMAT ##### -->
<para>
</para>

View File

@@ -60,6 +60,82 @@ Contains the public fields of a <link linkend="glib-queues">Queue</link>.
@queue:
<!-- ##### FUNCTION g_queue_is_empty ##### -->
<para>
</para>
@queue:
@Returns:
<!-- ##### FUNCTION g_queue_get_length ##### -->
<para>
</para>
@queue:
@Returns:
<!-- ##### FUNCTION g_queue_reverse ##### -->
<para>
</para>
@queue:
<!-- ##### FUNCTION g_queue_copy ##### -->
<para>
</para>
@queue:
@Returns:
<!-- ##### FUNCTION g_queue_foreach ##### -->
<para>
</para>
@queue:
@func:
@user_data:
<!-- ##### FUNCTION g_queue_find ##### -->
<para>
</para>
@queue:
@data:
@Returns:
<!-- ##### FUNCTION g_queue_find_custom ##### -->
<para>
</para>
@queue:
@data:
@func:
@Returns:
<!-- ##### FUNCTION g_queue_sort ##### -->
<para>
</para>
@queue:
@compare_func:
@user_data:
<!-- ##### FUNCTION g_queue_push_head ##### -->
<para>
@@ -78,6 +154,16 @@ Contains the public fields of a <link linkend="glib-queues">Queue</link>.
@data:
<!-- ##### FUNCTION g_queue_push_nth ##### -->
<para>
</para>
@queue:
@data:
@n:
<!-- ##### FUNCTION g_queue_pop_head ##### -->
<para>
@@ -96,12 +182,13 @@ Contains the public fields of a <link linkend="glib-queues">Queue</link>.
@Returns:
<!-- ##### FUNCTION g_queue_is_empty ##### -->
<!-- ##### FUNCTION g_queue_pop_nth ##### -->
<para>
</para>
@queue:
@n:
@Returns:
@@ -123,6 +210,75 @@ Contains the public fields of a <link linkend="glib-queues">Queue</link>.
@Returns:
<!-- ##### FUNCTION g_queue_peek_nth ##### -->
<para>
</para>
@queue:
@n:
@Returns:
<!-- ##### FUNCTION g_queue_index ##### -->
<para>
</para>
@queue:
@data:
@Returns:
<!-- ##### FUNCTION g_queue_remove ##### -->
<para>
</para>
@queue:
@data:
<!-- ##### FUNCTION g_queue_remove_all ##### -->
<para>
</para>
@queue:
@data:
<!-- ##### FUNCTION g_queue_insert_before ##### -->
<para>
</para>
@queue:
@sibling:
@data:
<!-- ##### FUNCTION g_queue_insert_after ##### -->
<para>
</para>
@queue:
@sibling:
@data:
<!-- ##### FUNCTION g_queue_insert_sorted ##### -->
<para>
</para>
@queue:
@data:
@func:
@user_data:
<!-- ##### FUNCTION g_queue_push_head_link ##### -->
<para>
@@ -141,6 +297,16 @@ Contains the public fields of a <link linkend="glib-queues">Queue</link>.
@link_:
<!-- ##### FUNCTION g_queue_push_nth_link ##### -->
<para>
</para>
@queue:
@n:
@link_:
<!-- ##### FUNCTION g_queue_pop_head_link ##### -->
<para>
@@ -159,3 +325,69 @@ Contains the public fields of a <link linkend="glib-queues">Queue</link>.
@Returns:
<!-- ##### FUNCTION g_queue_pop_nth_link ##### -->
<para>
</para>
@queue:
@n:
@Returns:
<!-- ##### FUNCTION g_queue_peek_head_link ##### -->
<para>
</para>
@queue:
@Returns:
<!-- ##### FUNCTION g_queue_peek_tail_link ##### -->
<para>
</para>
@queue:
@Returns:
<!-- ##### FUNCTION g_queue_peek_nth_link ##### -->
<para>
</para>
@queue:
@n:
@Returns:
<!-- ##### FUNCTION g_queue_link_index ##### -->
<para>
</para>
@queue:
@link_:
@Returns:
<!-- ##### FUNCTION g_queue_unlink ##### -->
<para>
</para>
@queue:
@link_:
<!-- ##### FUNCTION g_queue_delete_link ##### -->
<para>
</para>
@queue:
@link_:

View File

@@ -1613,6 +1613,8 @@ Any one-time initialization function must have its own unique <structname>GOnce<
struct.
</para>
@status:
@retval:
@Since: 2.4
<!-- ##### ENUM GOnceStatus ##### -->

View File

@@ -101,6 +101,7 @@ of a tree.
@Returns: A pointer to the copy.
@Since: 2.4
<!-- ##### FUNCTION g_node_copy_deep ##### -->
<para>

View File

@@ -21,6 +21,17 @@ to the #GObject implementation and should never be accessed directly.
</para>
<!-- ##### SIGNAL GObject::notify ##### -->
<para>
The notify signal is emitted on an object when one of its properties
has been changed. Note that getting this signal doesn't guarantee that the
value of the property has actually changed, it may also be emitted when
the setter for the property is called to reinstate the previous value.
</para>
@gobject: the object which received the signal.
@pspec: the #GParamSpec of the property which changed
<!-- ##### STRUCT GObjectClass ##### -->
<para>
The class structure for the <structname>GObject</structname> type.
@@ -855,14 +866,3 @@ properties in set_property() and get_property() implementations.
@pspec: the #GParamSpec of the property
<!-- ##### SIGNAL GObject::notify ##### -->
<para>
The notify signal is emitted on an object when one of its properties
has been changed. Note that getting this signal doesn't guarantee that the
value of the property has actually changed, it may also be emitted when
the setter for the property is called to reinstate the previous value.
</para>
@gobject: the object which received the signal.
@pspec: the #GParamSpec of the property which changed