mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-26 14:06:15 +01:00
Documentation fixups
This commit is contained in:
parent
85ab379ac6
commit
807d41b89b
@ -337,6 +337,7 @@ G_VA_COPY
|
||||
G_STRINGIFY
|
||||
G_PASTE
|
||||
G_STATIC_ASSERT
|
||||
G_STATIC_ASSERT_EXPR
|
||||
|
||||
<SUBSECTION>
|
||||
G_GNUC_EXTENSION
|
||||
@ -564,6 +565,7 @@ G_WIN32_MSG_HANDLE
|
||||
g_idle_funcs
|
||||
g_timeout_funcs
|
||||
g_child_watch_funcs
|
||||
GSourcePrivate
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
@ -784,6 +786,7 @@ g_atomic_int_exchange_and_add
|
||||
|
||||
<SUBSECTION Private>
|
||||
G_ATOMIC_OP_MEMORY_BARRIER_NEEDED
|
||||
G_ATOMIC_OP_USE_GCC_BUILTINS
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
@ -1945,6 +1948,8 @@ g_unix_signal_source_new
|
||||
g_unix_signal_add_watch_full
|
||||
g_unix_set_fd_nonblocking
|
||||
|
||||
<SUBSECTION Private>
|
||||
g_unix_error_quark
|
||||
</SECTION>
|
||||
|
||||
# Data Structures
|
||||
@ -2314,6 +2319,8 @@ g_string_down
|
||||
g_string_hash
|
||||
g_string_equal
|
||||
|
||||
<SUBSECTION Private>
|
||||
g_string_append_c_inline
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
|
@ -208,8 +208,7 @@ Returns the offset, in bytes, of a member of a struct.
|
||||
|
||||
<!-- ##### MACRO G_MEM_ALIGN ##### -->
|
||||
<para>
|
||||
Indicates the number of bytes to which memory will be aligned on the
|
||||
current platform.
|
||||
|
||||
</para>
|
||||
|
||||
|
||||
|
@ -1316,8 +1316,8 @@ g_date_time_add_full (GDateTime *datetime,
|
||||
* @dt1: first #GDateTime to compare
|
||||
* @dt2: second #GDateTime to compare
|
||||
*
|
||||
* #GCompareFunc-compatible comparison for #GDateTime<!-- -->'s. Both
|
||||
* #GDateTime<-- -->'s must be non-%NULL.
|
||||
* #GCompareFunc-compatible comparison for #GDateTimes.
|
||||
* Both #GDateTimes must be non-%NULL.
|
||||
*
|
||||
* Return value: -1, 0 or 1 if @dt1 is less than, equal to or greater
|
||||
* than @dt2.
|
||||
|
@ -3187,8 +3187,9 @@ g_key_file_has_key (GKeyFile *key_file,
|
||||
* exists. Otherwise, @error is set and %FALSE is returned.
|
||||
*
|
||||
* Since: 2.30
|
||||
*
|
||||
* Rename to: g_key_file_has_key
|
||||
**/
|
||||
*/
|
||||
gboolean
|
||||
g_key_file_has_key_full (GKeyFile *key_file,
|
||||
const gchar *group_name,
|
||||
|
@ -48,7 +48,7 @@
|
||||
* pointers which link to the previous and next elements in the list.
|
||||
* Using these pointers it is possible to move through the list in both
|
||||
* directions (unlike the <link
|
||||
* linkend="glib-Singly-Linked-lists">Singly-Linked Lists</link> which
|
||||
* linkend="glib-Singly-Linked-Lists">Singly-Linked Lists</link> which
|
||||
* only allows movement through the list in the forward direction).
|
||||
*
|
||||
* The data contained in each element can be either integer values, by
|
||||
|
@ -1894,8 +1894,8 @@ g_markup_parse_context_get_position (GMarkupParseContext *context,
|
||||
* of g_markup_parse_context_push().
|
||||
*
|
||||
* Returns: the provided user_data. The returned data belongs to
|
||||
* the markup context and will be freed when g_markup_context_free()
|
||||
* is called.
|
||||
* the markup context and will be freed when
|
||||
* g_markup_parse_context_free() is called.
|
||||
*
|
||||
* Since: 2.18
|
||||
*/
|
||||
|
@ -55,7 +55,7 @@ typedef struct _GMemVTable GMemVTable;
|
||||
#if GLIB_SIZEOF_VOID_P > GLIB_SIZEOF_LONG
|
||||
/**
|
||||
* G_MEM_ALIGN:
|
||||
*
|
||||
*
|
||||
* Indicates the number of bytes to which memory will be aligned on the
|
||||
* current platform.
|
||||
*/
|
||||
|
@ -751,16 +751,17 @@ g_sequence_sort_changed (GSequenceIter *iter,
|
||||
* g_sequence_search:
|
||||
* @seq: a #GSequence
|
||||
* @data: data for the new item
|
||||
* @cmp_func: the #GCompareDataFunc used to compare items in the sequence. It
|
||||
* is called with two items of the @seq and @user_data. It should
|
||||
* return 0 if the items are equal, a negative value if the first
|
||||
* item comes before the second, and a positive value if the second
|
||||
* item comes before the first.
|
||||
* @cmp_func: the function used to compare items in the sequence
|
||||
* @cmp_data: user data passed to @cmp_func.
|
||||
*
|
||||
* Returns an iterator pointing to the position where @data would
|
||||
* be inserted according to @cmp_func and @cmp_data.
|
||||
*
|
||||
* @cmp_func is called with two items of the @seq and @user_data.
|
||||
* It should return 0 if the items are equal, a negative value if
|
||||
* the first item comes before the second, and a positive value if
|
||||
* the second item comes before the first.
|
||||
*
|
||||
* If you are simply searching for an existing element of the sequence,
|
||||
* consider using g_sequence_lookup().
|
||||
*
|
||||
@ -791,21 +792,22 @@ g_sequence_search (GSequence *seq,
|
||||
* g_sequence_lookup:
|
||||
* @seq: a #GSequence
|
||||
* @data: data to lookup
|
||||
* @cmp_func: the #GCompareDataFunc used to compare items in the sequence. It
|
||||
* is called with two items of the @seq and @user_data. It should
|
||||
* return 0 if the items are equal, a negative value if the first
|
||||
* item comes before the second, and a positive value if the second
|
||||
* item comes before the first.
|
||||
* @cmp_func: the function used to compare items in the sequence
|
||||
* @cmp_data: user data passed to @cmp_func.
|
||||
*
|
||||
* Returns an iterator pointing to the position of the first item found
|
||||
* equal to @data according to @cmp_func and @cmp_data. If more than one item
|
||||
* is equal, it is not guaranteed that it is the first which is returned.
|
||||
* In that case, you can use g_sequence_iter_next() and g_sequence_iter_prev()
|
||||
* to get others.
|
||||
* equal to @data according to @cmp_func and @cmp_data. If more than one
|
||||
* item is equal, it is not guaranteed that it is the first which is
|
||||
* returned. In that case, you can use g_sequence_iter_next() and
|
||||
* g_sequence_iter_prev() to get others.
|
||||
*
|
||||
* Return value: an #GSequenceIter pointing to the position of the first item
|
||||
* found equal to @data according to @cmp_func and @cmp_data.
|
||||
* @cmp_func is called with two items of the @seq and @user_data.
|
||||
* It should return 0 if the items are equal, a negative value if
|
||||
* the first item comes before the second, and a positive value if
|
||||
* the second item comes before the first.
|
||||
*
|
||||
* Return value: an #GSequenceIter pointing to the position of the
|
||||
* first item found equal to @data according to @cmp_func and @cmp_data.
|
||||
*
|
||||
* Since: 2.28
|
||||
**/
|
||||
@ -830,16 +832,17 @@ g_sequence_lookup (GSequence *seq,
|
||||
/**
|
||||
* g_sequence_sort_iter:
|
||||
* @seq: a #GSequence
|
||||
* @cmp_func: the #GSequenceItercompare used to compare iterators in the
|
||||
* sequence. It is called with two iterators pointing into @seq. It should
|
||||
* return 0 if the iterators are equal, a negative value if the first
|
||||
* iterator comes before the second, and a positive value if the second
|
||||
* iterator comes before the first.
|
||||
* @cmp_func: the function used to compare iterators in the sequence
|
||||
* @cmp_data: user data passed to @cmp_func
|
||||
*
|
||||
* Like g_sequence_sort(), but uses a #GSequenceIterCompareFunc instead
|
||||
* of a GCompareDataFunc as the compare function
|
||||
*
|
||||
* @cmp_func is called with two iterators pointing into @seq. It should
|
||||
* return 0 if the iterators are equal, a negative value if the first
|
||||
* iterator comes before the second, and a positive value if the second
|
||||
* iterator comes before the first.
|
||||
*
|
||||
* Since: 2.14
|
||||
**/
|
||||
void
|
||||
|
@ -47,7 +47,7 @@
|
||||
* pointer which links to the next element in the list. Using this
|
||||
* pointer it is possible to move through the list in one direction
|
||||
* only (unlike the <link
|
||||
* linkend="glib-Doubly-Linked-lists">Doubly-Linked Lists</link> which
|
||||
* linkend="glib-Doubly-Linked-Lists">Doubly-Linked Lists</link> which
|
||||
* allow movement in both directions).
|
||||
*
|
||||
* The data contained in each element can be either integer values, by
|
||||
|
Loading…
Reference in New Issue
Block a user