mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-03-12 10:45:13 +01:00
Rename g_string_printfa(). to g_string_append_printf().
Mon Oct 1 15:59:46 2001 Owen Taylor <otaylor@redhat.com> * glib/tmpl/strings.sgml docs/glib-sections.txt: Rename g_string_printfa(). to g_string_append_printf().
This commit is contained in:
parent
42a186482c
commit
58d6b101ca
@ -1,3 +1,8 @@
|
|||||||
|
Mon Oct 1 15:59:46 2001 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
|
* glib/tmpl/strings.sgml docs/glib-sections.txt: Rename
|
||||||
|
g_string_printfa(). to g_string_append_printf().
|
||||||
|
|
||||||
2001-10-01 Matthias Clasen <matthiasc@poet.de>
|
2001-10-01 Matthias Clasen <matthiasc@poet.de>
|
||||||
|
|
||||||
* glib/glib-sections.txt: Move all *_error_quark()
|
* glib/glib-sections.txt: Move all *_error_quark()
|
||||||
|
@ -552,7 +552,6 @@ g_threads_got_initialized
|
|||||||
g_thread_functions_for_glib_use
|
g_thread_functions_for_glib_use
|
||||||
<SUBSECTION Private>
|
<SUBSECTION Private>
|
||||||
g_thread_error_quark
|
g_thread_error_quark
|
||||||
</SUBSECTION>
|
|
||||||
</SECTION>
|
</SECTION>
|
||||||
|
|
||||||
<SECTION>
|
<SECTION>
|
||||||
@ -1489,7 +1488,7 @@ g_string_assign
|
|||||||
g_string_sprintf
|
g_string_sprintf
|
||||||
g_string_sprintfa
|
g_string_sprintfa
|
||||||
g_string_printf
|
g_string_printf
|
||||||
g_string_printfa
|
g_string_append_printf
|
||||||
g_string_append
|
g_string_append
|
||||||
g_string_append_c
|
g_string_append_c
|
||||||
g_string_append_unichar
|
g_string_append_unichar
|
||||||
|
@ -82,7 +82,8 @@ you do not have to worry about having enough space to copy the string.
|
|||||||
Writes a formatted string into a #GString.
|
Writes a formatted string into a #GString.
|
||||||
This is similar to the standard <function>sprintf()</function> function,
|
This is similar to the standard <function>sprintf()</function> function,
|
||||||
except that the #GString buffer automatically expands to contain the results.
|
except that the #GString buffer automatically expands to contain the results.
|
||||||
The previous contents of the #GString are destroyed.
|
The previous contents of the #GString are destroyed. This
|
||||||
|
function has been renamaed to g_string_printf().
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<!-- # Unused Parameters # -->
|
<!-- # Unused Parameters # -->
|
||||||
@ -96,7 +97,8 @@ documentation.
|
|||||||
<para>
|
<para>
|
||||||
Appends a formatted string onto the end of a #GString.
|
Appends a formatted string onto the end of a #GString.
|
||||||
This function is is similar to g_string_sprintf() except that
|
This function is is similar to g_string_sprintf() except that
|
||||||
the text is appended to the #GString.
|
the text is appended to the #GString. The function has been
|
||||||
|
renamed to g_string_append_printf().
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<!-- # Unused Parameters # -->
|
<!-- # Unused Parameters # -->
|
||||||
@ -115,12 +117,12 @@ The previous contents of the #GString are destroyed.
|
|||||||
</para>
|
</para>
|
||||||
|
|
||||||
@string: a #GString.
|
@string: a #GString.
|
||||||
@format: the string format. See the <function>sprintf()</function>
|
@format: the string format. See the <function>printf()</function>
|
||||||
documentation.
|
documentation.
|
||||||
@Varargs: the parameters to insert into the format string.
|
@Varargs: the parameters to insert into the format string.
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### FUNCTION g_string_printfa ##### -->
|
<!-- ##### FUNCTION g_string_append_printf ##### -->
|
||||||
<para>
|
<para>
|
||||||
Appends a formatted string onto the end of a #GString.
|
Appends a formatted string onto the end of a #GString.
|
||||||
This function is is similar to g_string_sprintf() except that
|
This function is is similar to g_string_sprintf() except that
|
||||||
@ -128,7 +130,7 @@ the text is appended to the #GString.
|
|||||||
</para>
|
</para>
|
||||||
|
|
||||||
@string: a #GString.
|
@string: a #GString.
|
||||||
@format: the string format. See the <function>sprintf()</function>
|
@format: the string format. See the <function>printf()</function>
|
||||||
documentation.
|
documentation.
|
||||||
@Varargs: the parameters to insert into the format string.
|
@Varargs: the parameters to insert into the format string.
|
||||||
|
|
||||||
@ -304,6 +306,7 @@ If @free_segment is %TRUE it also frees the character data.
|
|||||||
|
|
||||||
@string: a #GString.
|
@string: a #GString.
|
||||||
@free_segment: if %TRUE the actual character data is freed as well.
|
@free_segment: if %TRUE the actual character data is freed as well.
|
||||||
|
@Returns:
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### FUNCTION g_string_up ##### -->
|
<!-- ##### FUNCTION g_string_up ##### -->
|
||||||
|
Loading…
x
Reference in New Issue
Block a user