diff --git a/ChangeLog b/ChangeLog index f58af71bfa..fa97117607 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-04-27 Sven Neumann + + * app/core/gimpcontext.c: fixed argument order for using + GIMP_CONFIG_INSTALL_PROP_RGB(). + 2006-04-27 Sven Neumann * libgimpcolor/gimprgb.[ch]: hide the GimpParamSpecRGB struct @@ -16,7 +21,7 @@ Made the GimpParamSpecRGB struct public. When validating a color, only look at the alpha channel if has_alpha is set. - * libgimpconfig/gimpconfig-params.h: added "has_alpha" to + * libgimpconfig/gimpconfig-params.h: added "has_alpha" to the GIMP_CONFIG_INSTALL_PROP_RGB macro definition. * libgimpconfig/gimpconfig-serialize.c: serialize color values as diff --git a/app/core/gimpcontext.c b/app/core/gimpcontext.c index 97393ce19e..b2cb03767b 100644 --- a/app/core/gimpcontext.c +++ b/app/core/gimpcontext.c @@ -580,14 +580,14 @@ gimp_context_class_init (GimpContextClass *klass) GIMP_CONFIG_INSTALL_PROP_RGB (object_class, GIMP_CONTEXT_PROP_FOREGROUND, gimp_context_prop_names[GIMP_CONTEXT_PROP_FOREGROUND], - FALSE, NULL, - &black, + NULL, + FALSE, &black, GIMP_PARAM_STATIC_STRINGS); GIMP_CONFIG_INSTALL_PROP_RGB (object_class, GIMP_CONTEXT_PROP_BACKGROUND, gimp_context_prop_names[GIMP_CONTEXT_PROP_BACKGROUND], - FALSE, NULL, - &white, + NULL, + FALSE, &white, GIMP_PARAM_STATIC_STRINGS); GIMP_CONFIG_INSTALL_PROP_DOUBLE (object_class, GIMP_CONTEXT_PROP_OPACITY,