summaryrefslogtreecommitdiff
path: root/src/spice-widget-egl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/spice-widget-egl.c')
-rw-r--r--src/spice-widget-egl.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/spice-widget-egl.c b/src/spice-widget-egl.c
index 0698af3..3cc1098 100644
--- a/src/spice-widget-egl.c
+++ b/src/spice-widget-egl.c
@@ -303,9 +303,12 @@ gl_make_current(SpiceDisplay *display, GError **err)
}
#if GTK_CHECK_VERSION(3,16,0)
else {
+ /* Ignore GLib's too-new warnings */
+ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
GtkWidget *area = gtk_stack_get_child_by_name(d->stack, "gl-area");
gtk_gl_area_make_current(GTK_GL_AREA(area));
+ G_GNUC_END_IGNORE_DEPRECATIONS
}
#endif