Maybe we should use GResource at some point, but (a) it involves some
awful XML disaster, and (b) it's looking like way more effort than I
want to spend right now.
if(!(pb = (GdkPixbuf *)cache_get(&image_cache_type, name))) {
if((n = TABLE_FIND(images, name, name)) >= 0) {
/* Use the built-in copy */
if(!(pb = (GdkPixbuf *)cache_get(&image_cache_type, name))) {
if((n = TABLE_FIND(images, name, name)) >= 0) {
/* Use the built-in copy */
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
if(!(pb = gdk_pixbuf_new_from_inline(-1, images[n].data, FALSE, &err))) {
if(!(pb = gdk_pixbuf_new_from_inline(-1, images[n].data, FALSE, &err))) {
+#pragma GCC diagnostic pop
disorder_error(0, "%s", err->message);
return 0;
}
disorder_error(0, "%s", err->message);
return 0;
}