image: remove GdkImage as a possible image type

GdkImage is about to be deprecated.
This commit is contained in:
Benjamin Otte
2010-07-12 17:34:19 +02:00
parent 4f8dbd4a8d
commit 24a867f8da
5 changed files with 1 additions and 212 deletions

View File

@ -222,14 +222,6 @@ gail_image_get_image_size (AtkImage *image,
*width = gdk_pixbuf_get_width(pixbuf);
break;
}
case GTK_IMAGE_IMAGE:
{
GdkImage *gdk_image;
gtk_image_get_image(gtk_image, &gdk_image, NULL);
*height = gdk_image->height;
*width = gdk_image->width;
break;
}
case GTK_IMAGE_STOCK:
case GTK_IMAGE_ICON_SET:
case GTK_IMAGE_ICON_NAME: