tools/pdbgen/pdb/paths.pdb minor documentation fixes, following the

2006-11-23  Simon Budig  <simon@gimp.org>

	* tools/pdbgen/pdb/paths.pdb
	* tools/pdbgen/pdb/vectors.pdb: minor documentation fixes,
	following the renaming.

	* app/pdb/paths_cmds.c
	* app/pdb/vectors_cmds.c
	* libgimp/gimppaths_pdb.c
	* libgimp/gimpvectors_pdb.c: regenerated.
This commit is contained in:
Simon Budig 2006-11-23 22:26:58 +00:00 committed by Simon Budig
parent 29de173de8
commit 1a95e589c3
7 changed files with 21 additions and 9 deletions

View file

@ -1,3 +1,14 @@
2006-11-23 Simon Budig <simon@gimp.org>
* tools/pdbgen/pdb/paths.pdb
* tools/pdbgen/pdb/vectors.pdb: minor documentation fixes,
following the renaming.
* app/pdb/paths_cmds.c
* app/pdb/vectors_cmds.c
* libgimp/gimppaths_pdb.c
* libgimp/gimpvectors_pdb.c: regenerated.
2006-11-23 Simon Budig <simon@gimp.org>
* plug-ins/pygimp/gimpmodule.c: follow the function renaming

View file

@ -1182,12 +1182,12 @@ register_paths_procs (GimpPDB *pdb)
gimp_object_set_static_name (GIMP_OBJECT (procedure), "gimp-path-import");
gimp_procedure_set_static_strings (procedure,
"gimp-path-import",
"This procedure is deprecated! Use 'vectors-new-from-file' instead.",
"This procedure is deprecated! Use 'vectors-new-from-file' instead.",
"This procedure is deprecated! Use 'vectors-import-from-file' instead.",
"This procedure is deprecated! Use 'vectors-import-from-file' instead.",
"",
"",
"",
"vectors-new-from-file");
"vectors-import-from-file");
gimp_procedure_add_argument (procedure,
gimp_param_spec_image_id ("image",
"image",

View file

@ -2453,7 +2453,7 @@ register_vectors_procs (GimpPDB *pdb)
gimp_procedure_set_static_strings (procedure,
"gimp-vectors-import-from-string",
"Import paths from an SVG string.",
"This procedure works like 'gimp-vectors-new-from-file' but takes a string rather than reading the SVG from a file. This allows you to write scripts that generate SVG and feed it to GIMP.",
"This procedure works like 'gimp-vectors-import-from-file' but takes a string rather than reading the SVG from a file. This allows you to write scripts that generate SVG and feed it to GIMP.",
"Simon Budig",
"Simon Budig",
"2006",

View file

@ -528,7 +528,8 @@ gimp_path_to_selection (gint32 image_ID,
* @merge: Merge paths into a single vectors object.
* @scale: Scale the SVG to image dimensions.
*
* This procedure is deprecated! Use vectors_new_from_file() instead.
* This procedure is deprecated! Use vectors_import_from_file()
* instead.
*
* Returns: TRUE on success.
*/

View file

@ -1282,8 +1282,8 @@ gimp_vectors_import_from_file (gint32 image_ID,
*
* Import paths from an SVG string.
*
* This procedure works like gimp_vectors_new_from_file() but takes a
* string rather than reading the SVG from a file. This allows you to
* This procedure works like gimp_vectors_import_from_file() but takes
* a string rather than reading the SVG from a file. This allows you to
* write scripts that generate SVG and feed it to GIMP.
*
* Returns: TRUE on success.

View file

@ -568,7 +568,7 @@ CODE
}
sub path_import {
&std_pdb_deprecated('vectors-new-from-file');
&std_pdb_deprecated('vectors-import-from-file');
@inargs = (
{ name => 'image', type => 'image',

View file

@ -1186,7 +1186,7 @@ sub vectors_import_from_string {
$blurb = 'Import paths from an SVG string.';
$help = <<'HELP';
This procedure works like gimp_vectors_new_from_file() but takes a string
This procedure works like gimp_vectors_import_from_file() but takes a string
rather than reading the SVG from a file. This allows you to write scripts that
generate SVG and feed it to GIMP.
HELP