Replace references to deprecated functions.
authorMatthias Clasen <matthiasc@src.gnome.org>
Sat, 29 Dec 2001 00:09:15 +0000 (00:09 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Sat, 29 Dec 2001 00:09:15 +0000 (00:09 +0000)
        * glib/tmpl/main.sgml, glib/tmpl/string_utils.sgml,
        glib/tmpl/strings.sgml: Replace references to deprecated
        functions.

docs/reference/ChangeLog
docs/reference/glib/tmpl/main.sgml
docs/reference/glib/tmpl/string_utils.sgml
docs/reference/glib/tmpl/strings.sgml

index 38298dbe647ba77508ea08a59785c483550a4c65..56febee5bce755cc46bf50798747b4b3d2d419b0 100644 (file)
@@ -1,3 +1,9 @@
+2001-12-23  Matthias Clasen  <matthias@poet.de>
+
+       * glib/tmpl/main.sgml, glib/tmpl/string_utils.sgml,
+       glib/tmpl/strings.sgml: Replace references to deprecated
+       functions.
+
 2001-12-21  Matthias Clasen  <matthias@poet.de>
 
        * glib/glib-sections.txt: Move g_get_charset() to the
index 46a010715f25f1c53c90c316ef454468e5572443..aaf0033147f679d84461e5731e1c058c7cc75552 100644 (file)
@@ -33,10 +33,10 @@ manages all available sources of events.
   <para>
     The #GMainLoop data type represents a main event loop.  A #GMainLoop
     is created with g_main_loop_new(). After adding the initial event sources,
-    g_main_run() is called. This continuously checks for new events from
+    g_main_loop_run() is called. This continuously checks for new events from
     each of the event sources and dispatches them.  Finally, the
     processing of an event from one of the sources leads to a call to
-    g_main_quit() to exit the main loop, and g_main_run() returns.
+    g_main_loop_quit() to exit the main loop, and g_main_loop_run() returns.
   </para>
   <para>
     It is possible to create new instances of #GMainLoop recursively.
index 5c399aa6920eb6a5ae5e48bfbb26c2ab90fc858b..1ad7edc8d4b71f89f41d4344a56c6cb595f1023e 100644 (file)
@@ -755,7 +755,7 @@ character compressed.
 For each character in @string, if the character is not in @valid_chars,
 replaces the character with @substitutor. Modifies @string in place, 
 and return @string itself, not a copy. The return value is to allow
-nesting such as <literal>g_strup (g_strcanon (str))</literal>.
+nesting such as <literal>g_ascii_strup (g_strcanon (str, "abc", '?'))</literal>.
 </para>
 
 @string: a nul-terminated array of bytes.
index 738f98789e525df4292de2acb53f4e91723cfd10..0e34ac9cd5bce119184f6159e8ff6bf77cc6fc24 100644 (file)
@@ -125,7 +125,7 @@ documentation.
 <!-- ##### FUNCTION g_string_append_printf ##### -->
 <para>
 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_printf() except that
 the text is appended to the #GString.
 </para>