make it compile again

--Sven
This commit is contained in:
Sven Neumann
2000-02-04 14:40:03 +00:00
parent 8d21d63a6e
commit 496d7277e4
4 changed files with 27 additions and 23 deletions

View File

@ -4,6 +4,10 @@ Sat Feb 5 13:22:47 CET 2000 Sven Neumann <sven@gimp.org>
using the FG color would make sense, it is definitely too late to
change this now since it breaks lots of scripts and plugins.
* tools/pdbgen/pdb/paths.pdb:
* internal_procs.c:
* paths_cmds.c: make it compile again
2000-02-05 Tor Lillqvist <tml@iki.fi>
* gimprc.in: user_install creates the gflare directory as

View File

@ -60,7 +60,7 @@ void register_tools_procs (void);
void register_undo_procs (void);
void register_unit_procs (void);
/* 316 procedures registered total */
/* 315 procedures registered total */
void
internal_procs_init (void)
@ -68,7 +68,7 @@ internal_procs_init (void)
app_init_update_status (_("Internal Procedures"), _("Brush UI"), 0.0);
register_brush_select_procs ();
app_init_update_status (NULL, _("Brushes"), 0.009);
app_init_update_status (NULL, _("Brushes"), 0.01);
register_brushes_procs ();
app_init_update_status (NULL, _("Channel"), 0.044);
@ -83,64 +83,64 @@ internal_procs_init (void)
app_init_update_status (NULL, _("Convert"), 0.133);
register_convert_procs ();
app_init_update_status (NULL, _("Drawable procedures"), 0.142);
app_init_update_status (NULL, _("Drawable procedures"), 0.143);
register_drawable_procs ();
app_init_update_status (NULL, _("Edit procedures"), 0.212);
app_init_update_status (NULL, _("Edit procedures"), 0.213);
register_edit_procs ();
app_init_update_status (NULL, _("File Operations"), 0.231);
app_init_update_status (NULL, _("File Operations"), 0.232);
register_fileops_procs ();
app_init_update_status (NULL, _("Floating selections"), 0.256);
app_init_update_status (NULL, _("Floating selections"), 0.257);
register_floating_sel_procs ();
app_init_update_status (NULL, _("GDisplay procedures"), 0.275);
app_init_update_status (NULL, _("GDisplay procedures"), 0.276);
register_gdisplay_procs ();
app_init_update_status (NULL, _("Image"), 0.285);
app_init_update_status (NULL, _("Image"), 0.286);
register_gimage_procs ();
app_init_update_status (NULL, _("Image mask"), 0.465);
app_init_update_status (NULL, _("Image mask"), 0.467);
register_gimage_mask_procs ();
app_init_update_status (NULL, _("Gimprc procedures"), 0.519);
app_init_update_status (NULL, _("Gimprc procedures"), 0.521);
register_gimprc_procs ();
app_init_update_status (NULL, _("Help procedures"), 0.528);
app_init_update_status (NULL, _("Help procedures"), 0.53);
register_gimphelp_procs ();
app_init_update_status (NULL, _("Gradients"), 0.532);
app_init_update_status (NULL, _("Gradients"), 0.533);
register_gradient_procs ();
app_init_update_status (NULL, _("Gradient UI"), 0.547);
app_init_update_status (NULL, _("Gradient UI"), 0.549);
register_gradient_select_procs ();
app_init_update_status (NULL, _("Guide procedures"), 0.56);
app_init_update_status (NULL, _("Guide procedures"), 0.562);
register_guides_procs ();
app_init_update_status (NULL, _("Interface"), 0.579);
app_init_update_status (NULL, _("Interface"), 0.581);
register_interface_procs ();
app_init_update_status (NULL, _("Layer"), 0.589);
app_init_update_status (NULL, _("Layer"), 0.59);
register_layer_procs ();
app_init_update_status (NULL, _("Miscellaneous"), 0.684);
app_init_update_status (NULL, _("Miscellaneous"), 0.686);
register_misc_procs ();
app_init_update_status (NULL, _("Palette"), 0.69);
app_init_update_status (NULL, _("Palette"), 0.692);
register_palette_procs ();
app_init_update_status (NULL, _("Parasite procedures"), 0.712);
app_init_update_status (NULL, _("Parasite procedures"), 0.714);
register_parasite_procs ();
app_init_update_status (NULL, _("Paths"), 0.753);
app_init_update_status (NULL, _("Paths"), 0.756);
register_paths_procs ();
app_init_update_status (NULL, _("Pattern UI"), 0.794);
register_pattern_select_procs ();
app_init_update_status (NULL, _("Patterns"), 0.804);
app_init_update_status (NULL, _("Patterns"), 0.803);
register_patterns_procs ();
app_init_update_status (NULL, _("Plug-in"), 0.816);

View File

@ -719,7 +719,7 @@ static ProcRecord path_get_tattoo_proc =
{
"gimp_path_get_tattoo",
"Returns the tattoo associated with the name path.",
"This procedure returns the tattoo associated with the specified path. A tattoo is a unique and permenant identifier attached to a path that can be used to uniquely identify a path within an image even between sessions.",
"This procedure returns the tattoo associated with the specified path. A tattoo is a unique and permanent identifier attached to a path that can be used to uniquely identify a path within an image even between sessions.",
"Andy Thomas",
"Andy Thomas",
"1999",

View File

@ -716,7 +716,7 @@ CODE
@procs = qw(path_list path_get_points path_get_current path_set_current
path_set_points path_stroke_current path_get_point_at_dist
path_get_tattoo get_path_by_tattoo path_delete path_get_locked
path_set_locked path_set_tattoo);
path_set_locked);
%exports = (app => [@procs]);
$desc = 'Paths';