gimp_canonicalize_identifier() is new API, mark it as such.

2005-10-06  Sven Neumann  <sven@gimp.org>

	* libgimpbase/gimputils.c: gimp_canonicalize_identifier() is new API,
	mark it as such.
This commit is contained in:
Sven Neumann
2005-10-05 23:49:17 +00:00
committed by Sven Neumann
parent f5527875d8
commit e5fe00987c
2 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2005-10-06 Sven Neumann <sven@gimp.org>
* libgimpbase/gimputils.c: gimp_canonicalize_identifier() is new API,
mark it as such.
2005-10-06 Sven Neumann <sven@gimp.org>
* libgimp/gimpprocbrowserdialog.c: capitalization and other string

View File

@ -338,14 +338,14 @@ gimp_escape_uline (const gchar *str)
* Turns any input string into a canonicalized string.
*
* Canonical identifiers are e.g. expected by the PDB for procedure
* and parameter names.
*
* Every character of the input string that is not either '-', 'a-z',
* 'A-Z' or '0-9' will be replaced by a '-'.
* and parameter names. Every character of the input string that is
* not either '-', 'a-z', 'A-Z' or '0-9' will be replaced by a '-'.
*
* Return value: The canonicalized identifier. This is a newly
* allocated string that should be freed with g_free()
* when no longer needed.
*
* Since: GIMP 2.4
**/
gchar *
gimp_canonicalize_identifier (const gchar *identifier)