tools/pdbgen/pdb/brushes.pdb tools/pdbgen/pdb/fonts.pdb

2003-09-04  Manish Singh  <yosh@gimp.org>

        * tools/pdbgen/pdb/brushes.pdb
        * tools/pdbgen/pdb/fonts.pdb
        * tools/pdbgen/pdb/gradients.pdb
        * tools/pdbgen/pdb/palettes.pdb
        * tools/pdbgen/pdb/patterns.pdb: init pattern_list to quell gcc
        warning.

        * app/pdb/brushes_cmds.c
        * app/pdb/fonts_cmds.c
        * app/pdb/gradients_cmds.c
        * app/pdb/palettes_cmds.c
        * app/pdb/patterns_cmds.c: regenerated.
This commit is contained in:
Manish Singh 2003-09-04 17:28:13 +00:00 committed by Manish Singh
parent 02fcd79b27
commit b982386fe6
11 changed files with 30 additions and 10 deletions

View File

@ -1,3 +1,18 @@
2003-09-04 Manish Singh <yosh@gimp.org>
* tools/pdbgen/pdb/brushes.pdb
* tools/pdbgen/pdb/fonts.pdb
* tools/pdbgen/pdb/gradients.pdb
* tools/pdbgen/pdb/palettes.pdb
* tools/pdbgen/pdb/patterns.pdb: init pattern_list to quell gcc
warning.
* app/pdb/brushes_cmds.c
* app/pdb/fonts_cmds.c
* app/pdb/gradients_cmds.c
* app/pdb/palettes_cmds.c
* app/pdb/patterns_cmds.c: regenerated.
2003-09-04 Sven Neumann <sven@gimp.org>
* tools/pdbgen/pdb/plug_in.pdb (plugins_query): use regfree()

View File

@ -107,7 +107,7 @@ brushes_get_list_invoker (Gimp *gimp,
Argument *return_args;
gchar *filter;
gint32 num_brushes;
gchar **brush_list;
gchar **brush_list = NULL;
filter = (gchar *) args[0].value.pdb_pointer;
if (filter && !g_utf8_validate (filter, -1, NULL))

View File

@ -75,7 +75,7 @@ fonts_get_list_invoker (Gimp *gimp,
Argument *return_args;
gchar *filter;
gint32 num_fonts;
gchar **font_list;
gchar **font_list = NULL;
filter = (gchar *) args[0].value.pdb_pointer;
if (filter && !g_utf8_validate (filter, -1, NULL))

View File

@ -90,7 +90,7 @@ gradients_get_list_invoker (Gimp *gimp,
Argument *return_args;
gchar *filter;
gint32 num_gradients;
gchar **gradient_list;
gchar **gradient_list = NULL;
filter = (gchar *) args[0].value.pdb_pointer;
if (filter && !g_utf8_validate (filter, -1, NULL))

View File

@ -96,7 +96,7 @@ palettes_get_list_invoker (Gimp *gimp,
Argument *return_args;
gchar *filter;
gint32 num_palettes;
gchar **palette_list;
gchar **palette_list = NULL;
filter = (gchar *) args[0].value.pdb_pointer;
if (filter && !g_utf8_validate (filter, -1, NULL))

View File

@ -86,7 +86,7 @@ patterns_get_list_invoker (Gimp *gimp,
Argument *return_args;
gchar *filter;
gint32 num_patterns;
gchar **pattern_list;
gchar **pattern_list = NULL;
filter = (gchar *) args[0].value.pdb_pointer;
if (filter && !g_utf8_validate (filter, -1, NULL))

View File

@ -111,7 +111,8 @@ HELP
{ name => 'brush_list', type => 'stringarray',
desc => 'The list of brush names',
array => { name => 'num_brushes',
desc => 'The number of brushes in the brush list' } }
desc => 'The number of brushes in the brush list' },
init => 1 }
);
%invoke = (

View File

@ -58,7 +58,8 @@ HELP
{ name => 'font_list', type => 'stringarray',
desc => 'The list of font names',
array => { name => 'num_fonts',
desc => 'The number of available fonts' } }
desc => 'The number of available fonts' },
init => 1 }
);
%invoke = (

View File

@ -66,7 +66,8 @@ HELP
{ name => 'gradient_list', type => 'stringarray',
desc => 'The list of gradient names',
array => { name => 'num_gradients',
desc => 'The number of loaded gradients' } }
desc => 'The number of loaded gradients' },
init => 1 }
);
%invoke = (

View File

@ -107,7 +107,8 @@ HELP
{ name => 'palette_list', type => 'stringarray',
desc => 'The list of palette names',
array => { name => 'num_palettes',
desc => 'The number of palettes in the list' } }
desc => 'The number of palettes in the list' },
init => 1 }
);
%invoke = (

View File

@ -89,7 +89,8 @@ HELP
{ name => 'pattern_list', type => 'stringarray',
desc => 'The list of pattern names',
array => { name => 'num_patterns',
desc => 'The number of patterns in the pattern list' } }
desc => 'The number of patterns in the pattern list' },
init => 1 }
);
%invoke = (