mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-21 08:28:53 +02:00
Document the recently deprecated functions as such.
2000-10-27 Sebastian Wilhelmi <wilhelmi@ira.uka.de> * glib/glib-sections.txt, glib/tmpl/hash_tables.sgml, glib/tmpl/macros_misc.sgml, glib/tmpl/misc_utils.sgml, glib/tmpl/scanner.sgml: Document the recently deprecated functions as such.
This commit is contained in:
committed by
Sebastian Wilhelmi
parent
1e46cf8099
commit
b6b00bab53
@@ -1,3 +1,10 @@
|
|||||||
|
2000-10-27 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||||
|
|
||||||
|
* glib/glib-sections.txt, glib/tmpl/hash_tables.sgml,
|
||||||
|
glib/tmpl/macros_misc.sgml, glib/tmpl/misc_utils.sgml,
|
||||||
|
glib/tmpl/scanner.sgml: Document the recently deprecated functions
|
||||||
|
as such.
|
||||||
|
|
||||||
2000-10-15 Raja R Harinath <harinath@cs.umn.edu>
|
2000-10-15 Raja R Harinath <harinath@cs.umn.edu>
|
||||||
|
|
||||||
'make distcheck' fixes.
|
'make distcheck' fixes.
|
||||||
|
@@ -883,8 +883,8 @@ g_basename
|
|||||||
g_dirname
|
g_dirname
|
||||||
g_path_is_absolute
|
g_path_is_absolute
|
||||||
g_path_skip_root
|
g_path_skip_root
|
||||||
g_path_get_dirname
|
|
||||||
g_path_get_basename
|
g_path_get_basename
|
||||||
|
g_path_get_dirname
|
||||||
g_filename_to_utf8
|
g_filename_to_utf8
|
||||||
g_filename_from_utf8
|
g_filename_from_utf8
|
||||||
|
|
||||||
|
@@ -252,24 +252,20 @@ It should return TRUE if the key/value pair should be removed from the
|
|||||||
|
|
||||||
<!-- ##### FUNCTION g_hash_table_freeze ##### -->
|
<!-- ##### FUNCTION g_hash_table_freeze ##### -->
|
||||||
<para>
|
<para>
|
||||||
Disable resizing of a #GHashTable.
|
This function is deprecated and will be removed in the next major
|
||||||
</para>
|
release of GLib. It does nothing.
|
||||||
<para>
|
|
||||||
This should be used if you need to make a lot of changes to a #GHashTable
|
|
||||||
at once, as it reduces the number of times that the #GHashTable is rebuilt.
|
|
||||||
You should call g_hash_table_thaw() after updating the #GHashTable to
|
|
||||||
enable resizing again.
|
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
@hash_table: a #GHashTable.
|
@hash_table:
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### FUNCTION g_hash_table_thaw ##### -->
|
<!-- ##### FUNCTION g_hash_table_thaw ##### -->
|
||||||
<para>
|
<para>
|
||||||
Enables resizing of a #GHashTable.
|
This function is deprecated and will be removed in the next major
|
||||||
|
release of GLib. It does nothing.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
@hash_table: a #GHashTable.
|
@hash_table:
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### FUNCTION g_hash_table_destroy ##### -->
|
<!-- ##### FUNCTION g_hash_table_destroy ##### -->
|
||||||
|
@@ -66,7 +66,6 @@ only one statement is expected by the compiler.
|
|||||||
Portable way to copy <type>va_list</type> variables.
|
Portable way to copy <type>va_list</type> variables.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<!-- # Unused Parameters # -->
|
|
||||||
@ap1: the <type>va_list</type> variable to place a copy of @ap2 in.
|
@ap1: the <type>va_list</type> variable to place a copy of @ap2 in.
|
||||||
@ap2: a <type>va_list</type>.
|
@ap2: a <type>va_list</type>.
|
||||||
|
|
||||||
|
@@ -91,8 +91,14 @@ The returned string should be freed when no longer needed.
|
|||||||
|
|
||||||
<!-- ##### FUNCTION g_basename ##### -->
|
<!-- ##### FUNCTION g_basename ##### -->
|
||||||
<para>
|
<para>
|
||||||
Gets the name of the file without any leading directory components.
|
This function is deprecated and will be removed in the next major
|
||||||
It returns a pointer into the given file name string.
|
release of GLib. Use g_path_get_basename() instead.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
Gets the name of the file without any leading
|
||||||
|
directory components. It returns a pointer into the given file name
|
||||||
|
string.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
@file_name: the name of the file.
|
@file_name: the name of the file.
|
||||||
@@ -100,6 +106,11 @@ It returns a pointer into the given file name string.
|
|||||||
|
|
||||||
|
|
||||||
<!-- ##### FUNCTION g_dirname ##### -->
|
<!-- ##### FUNCTION g_dirname ##### -->
|
||||||
|
<para>
|
||||||
|
This function is deprecated and will be removed in the next major
|
||||||
|
release of GLib. Use g_path_get_dirname() instead.
|
||||||
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Gets the directory components of a file name.
|
Gets the directory components of a file name.
|
||||||
If the file name has no directory components "." is returned.
|
If the file name has no directory components "." is returned.
|
||||||
@@ -134,20 +145,31 @@ path it returns NULL.
|
|||||||
|
|
||||||
<!-- ##### FUNCTION g_path_get_dirname ##### -->
|
<!-- ##### FUNCTION g_path_get_dirname ##### -->
|
||||||
<para>
|
<para>
|
||||||
|
Gets the directory components of a file name. If the file name has no
|
||||||
|
directory components "." is returned. The returned string should be
|
||||||
|
freed when no longer needed.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
@file_name:
|
@file_name: the name of the file.
|
||||||
@Returns:
|
@Returns: the directory components of the file.
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### FUNCTION g_path_get_basename ##### -->
|
<!-- ##### FUNCTION g_path_get_basename ##### -->
|
||||||
<para>
|
<para>
|
||||||
|
Gets the name of the file without any leading directory components.
|
||||||
|
The returned string should be freed when no longer needed.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
@file_name:
|
<note>
|
||||||
@Returns:
|
<para>
|
||||||
|
This function allocates new memory for the returned string. This is
|
||||||
|
different from the old g_basename() function, which returned a pointer
|
||||||
|
into the argument.
|
||||||
|
</para>
|
||||||
|
</note>
|
||||||
|
|
||||||
|
@file_name: the name of the file.
|
||||||
|
@Returns: the name of the file without any leading directory components.
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### FUNCTION g_filename_to_utf8 ##### -->
|
<!-- ##### FUNCTION g_filename_to_utf8 ##### -->
|
||||||
|
@@ -308,7 +308,8 @@ Adds a symbol to the given scope.
|
|||||||
|
|
||||||
<!-- ##### FUNCTION g_scanner_freeze_symbol_table ##### -->
|
<!-- ##### FUNCTION g_scanner_freeze_symbol_table ##### -->
|
||||||
<para>
|
<para>
|
||||||
|
This function is deprecated and will be removed in the next major
|
||||||
|
release of GLib. It does nothing.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
@scanner:
|
@scanner:
|
||||||
@@ -316,7 +317,8 @@ Adds a symbol to the given scope.
|
|||||||
|
|
||||||
<!-- ##### FUNCTION g_scanner_thaw_symbol_table ##### -->
|
<!-- ##### FUNCTION g_scanner_thaw_symbol_table ##### -->
|
||||||
<para>
|
<para>
|
||||||
|
This function is deprecated and will be removed in the next major
|
||||||
|
release of GLib. It does nothing.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
@scanner:
|
@scanner:
|
||||||
|
Reference in New Issue
Block a user