libgimp: use gimp_item_get_name() instead of deprecated API

This commit is contained in:
Michael Natterer
2010-07-09 11:22:18 +02:00
parent 45a7484b6a
commit 056a3bf256

View File

@ -421,15 +421,10 @@ gimp_item_combo_box_model_add (GtkListStore *store,
if (! constraint || (* constraint) (image, items[i], data))
{
gchar *image_name = gimp_image_get_name (image);
gchar *item_name;
gchar *item_name = gimp_item_get_name (items[i]);
gchar *label;
GdkPixbuf *thumb;
if (type == VECTORS_COMBO_BOX)
item_name = gimp_vectors_get_name (items[i]);
else
item_name = gimp_drawable_get_name (items[i]);
label = g_strdup_printf ("%s-%d/%s-%d",
image_name, image,
item_name, items[i]);