libgimp: use gimp_item_get_name() instead of deprecated API
This commit is contained in:
@ -421,15 +421,10 @@ gimp_item_combo_box_model_add (GtkListStore *store,
|
|||||||
if (! constraint || (* constraint) (image, items[i], data))
|
if (! constraint || (* constraint) (image, items[i], data))
|
||||||
{
|
{
|
||||||
gchar *image_name = gimp_image_get_name (image);
|
gchar *image_name = gimp_image_get_name (image);
|
||||||
gchar *item_name;
|
gchar *item_name = gimp_item_get_name (items[i]);
|
||||||
gchar *label;
|
gchar *label;
|
||||||
GdkPixbuf *thumb;
|
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",
|
label = g_strdup_printf ("%s-%d/%s-%d",
|
||||||
image_name, image,
|
image_name, image,
|
||||||
item_name, items[i]);
|
item_name, items[i]);
|
||||||
|
Reference in New Issue
Block a user