Removed palette_init_palettes and palette_free_palettes.

Removed palette_init_palettes and palette_free_palettes.
This commit is contained in:
Daniel Egger 2000-08-08 23:07:45 +00:00
parent 6a6b8ab135
commit 01d6598cc5
3 changed files with 14 additions and 3 deletions

View File

@ -1,3 +1,14 @@
2000-08-08 Daniel Egger <egger@suse.de>
* tools/pdbgen/pdb/convert.pdb:
* tools/pdbgen/pdb/palette.pdb:
* convert.c:
* convert_cmds.c:
* palette.c:
* palette_cmds.c: Removed superflous
palette_init_palettes and palette_free_palettes functions
and changed their callers accordingly.
2000-08-08 Sven Neumann <sven@gimp.org>
* Makefile.am

View File

@ -132,7 +132,7 @@ HELP
case CUSTOM_PALETTE:
if (!palette_entries_list)
palette_init_palettes (FALSE);
palettes_init (FALSE);
for (list = palette_entries_list; list; list = list->next)
{

View File

@ -163,8 +163,8 @@ HELP
* -and shamelessly stolen by Adrian Likins for use here...
*/
palette_free_palettes ();
palette_init_palettes (FALSE);
palettes_free ();
palettes_init (FALSE);
}
CODE
);