mirror of https://github.com/GNOME/gimp.git
use gimp_enum_get_value() to avoid string duplication.
2005-06-25 Sven Neumann <sven@gimp.org> * app/widgets/gimpimagepropview.c (gimp_image_prop_view_update): use gimp_enum_get_value() to avoid string duplication.
This commit is contained in:
parent
30564babb6
commit
feadca6859
|
@ -1,3 +1,8 @@
|
||||||
|
2005-06-25 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
|
* app/widgets/gimpimagepropview.c (gimp_image_prop_view_update):
|
||||||
|
use gimp_enum_get_value() to avoid string duplication.
|
||||||
|
|
||||||
2005-06-25 Karine Delvare <kdelvare@nerim.net>
|
2005-06-25 Karine Delvare <kdelvare@nerim.net>
|
||||||
|
|
||||||
* authors.xml: added Akkana Peck to contributors and updated my
|
* authors.xml: added Akkana Peck to contributors and updated my
|
||||||
|
|
|
@ -275,6 +275,7 @@ gimp_image_prop_view_update (GimpImagePropView *view)
|
||||||
GimpUnit unit;
|
GimpUnit unit;
|
||||||
gdouble unit_factor;
|
gdouble unit_factor;
|
||||||
gint unit_digits;
|
gint unit_digits;
|
||||||
|
const gchar *desc;
|
||||||
gchar format_buf[32];
|
gchar format_buf[32];
|
||||||
gchar buf[256];
|
gchar buf[256];
|
||||||
|
|
||||||
|
@ -317,17 +318,18 @@ gimp_image_prop_view_update (GimpImagePropView *view)
|
||||||
/* color type */
|
/* color type */
|
||||||
type = gimp_image_base_type (image);
|
type = gimp_image_base_type (image);
|
||||||
|
|
||||||
|
gimp_enum_get_value (GIMP_TYPE_IMAGE_BASE_TYPE, type,
|
||||||
|
NULL, NULL, &desc, NULL);
|
||||||
|
|
||||||
switch (type)
|
switch (type)
|
||||||
{
|
{
|
||||||
case GIMP_RGB:
|
case GIMP_RGB:
|
||||||
g_snprintf (buf, sizeof (buf), "%s", _("RGB Color"));
|
|
||||||
break;
|
|
||||||
case GIMP_GRAY:
|
case GIMP_GRAY:
|
||||||
g_snprintf (buf, sizeof (buf), "%s", _("Grayscale"));
|
g_snprintf (buf, sizeof (buf), "%s", desc);
|
||||||
break;
|
break;
|
||||||
case GIMP_INDEXED:
|
case GIMP_INDEXED:
|
||||||
g_snprintf (buf, sizeof (buf), "%s (%d %s)",
|
g_snprintf (buf, sizeof (buf),
|
||||||
_("Indexed Color"), image->num_cols, _("colors"));
|
"%s (%d %s)", desc, image->num_cols, _("colors"));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue