Changed the libgimp GFillType enums to match the core enums in value, the

Tue Jul 28 15:42:39 CDT 1998  Larry Ewing  <lewing@gimp.org>

	* app/drawable_cmds.c (drawable_fill_invoker):
	* libgimp/gimpenums.h: Changed the libgimp GFillType
	enums to match the core enums in value, the names still
	differ.

	* plug-ins/script-fu/script-fu.c: changed the fill setvars to use
	the GFillType enums.
This commit is contained in:
CDT 1998 Larry Ewing
1998-07-28 22:08:56 +00:00
committed by Larry Ewing
parent 3635728000
commit 8540bdc54d
4 changed files with 24 additions and 10 deletions

View File

@ -387,10 +387,11 @@ init_constants ()
setvar (cintern ("BG-BUCKET-FILL"), flocons (1), NIL);
setvar (cintern ("PATTERN-BUCKET-FILL"), flocons (2), NIL);
setvar (cintern ("BG-IMAGE-FILL"), flocons (0), NIL);
setvar (cintern ("WHITE-IMAGE-FILL"), flocons (1), NIL);
setvar (cintern ("TRANS-IMAGE-FILL"), flocons (2), NIL);
setvar (cintern ("NO-IMAGE-FILL"), flocons (3), NIL);
setvar (cintern ("FG-IMAGE-FILL"), flocons (FG_IMAGE_FILL), NIL);
setvar (cintern ("BG-IMAGE-FILL"), flocons (BG_IMAGE_FILL), NIL);
setvar (cintern ("WHITE-IMAGE-FILL"), flocons (WHITE_IMAGE_FILL), NIL);
setvar (cintern ("TRANS-IMAGE-FILL"), flocons (TRANS_IMAGE_FILL), NIL);
setvar (cintern ("NO-IMAGE-FILL"), flocons (NO_IMAGE_FILL), NIL);
setvar (cintern ("RGB"), flocons (0), NIL);
setvar (cintern ("GRAY"), flocons (1), NIL);