mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-27 06:00:22 +00:00
Ignore gdk-pixbuf deprecations
This commit is contained in:
parent
96a3b23736
commit
fc6f22c3ce
@ -510,6 +510,7 @@ _gtk_icon_cache_get_icon (GtkIconCache *cache,
|
||||
|
||||
length = GET_UINT32 (cache->buffer, pixel_data_offset + 4);
|
||||
|
||||
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
if (!gdk_pixdata_deserialize (&pixdata, length,
|
||||
(guchar *)(cache->buffer + pixel_data_offset + 8),
|
||||
&error))
|
||||
@ -520,6 +521,7 @@ _gtk_icon_cache_get_icon (GtkIconCache *cache,
|
||||
|
||||
return NULL;
|
||||
}
|
||||
G_GNUC_END_IGNORE_DEPRECATIONS
|
||||
|
||||
pixbuf = gdk_pixbuf_new_from_data (pixdata.pixel_data, GDK_COLORSPACE_RGB,
|
||||
(pixdata.pixdata_type & GDK_PIXDATA_COLOR_TYPE_MASK) == GDK_PIXDATA_COLOR_TYPE_RGBA,
|
||||
|
@ -590,6 +590,7 @@ serialize_text (GtkTextBuffer *buffer,
|
||||
g_string_append (context->text_str, "</text>\n</text_view_markup>\n");
|
||||
}
|
||||
|
||||
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
static void
|
||||
serialize_pixbufs (SerializationContext *context,
|
||||
GString *text)
|
||||
@ -611,6 +612,7 @@ serialize_pixbufs (SerializationContext *context,
|
||||
g_free (tmp);
|
||||
}
|
||||
}
|
||||
G_GNUC_END_IGNORE_DEPRECATIONS
|
||||
|
||||
guint8 *
|
||||
_gtk_text_buffer_serialize_rich_text (GtkTextBuffer *register_buffer,
|
||||
@ -1068,6 +1070,7 @@ typedef struct
|
||||
const gchar *start;
|
||||
} Header;
|
||||
|
||||
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||
static GdkPixbuf *
|
||||
get_pixbuf_from_headers (GList *headers,
|
||||
int id,
|
||||
@ -1090,6 +1093,7 @@ get_pixbuf_from_headers (GList *headers,
|
||||
|
||||
return pixbuf;
|
||||
}
|
||||
G_GNUC_END_IGNORE_DEPRECATIONS
|
||||
|
||||
static void
|
||||
parse_apply_tag_element (GMarkupParseContext *context,
|
||||
|
Loading…
Reference in New Issue
Block a user