From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39864) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YyHCK-0002VX-58 for qemu-devel@nongnu.org; Fri, 29 May 2015 06:07:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YyHCJ-0000Y3-8P for qemu-devel@nongnu.org; Fri, 29 May 2015 06:07:28 -0400 Received: from mx1.redhat.com ([209.132.183.28]:58368) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YyHCJ-0000Xy-3u for qemu-devel@nongnu.org; Fri, 29 May 2015 06:07:27 -0400 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (Postfix) with ESMTPS id D9F583620B8 for ; Fri, 29 May 2015 10:07:26 +0000 (UTC) From: Gerd Hoffmann Date: Fri, 29 May 2015 12:07:16 +0200 Message-Id: <1432894036-28513-6-git-send-email-kraxel@redhat.com> In-Reply-To: <1432894036-28513-1-git-send-email-kraxel@redhat.com> References: <1432894036-28513-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PULL 5/5] gtk: Replace gdk_cursor_new() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann , Max Reitz From: Max Reitz gdk_cursor_new() has been deprecated in GTK 3.16, it is recommended to use gdk_cursor_new_for_display() instead, so do that. Signed-off-by: Max Reitz Reviewed-by: Cole Robinson Signed-off-by: Gerd Hoffmann --- ui/gtk.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ui/gtk.c b/ui/gtk.c index 2477e37..126326a 100644 --- a/ui/gtk.c +++ b/ui/gtk.c @@ -1921,6 +1921,7 @@ void gtk_display_init(DisplayState *ds, bool full_screen, bool grab_on_hover) { GtkDisplayState *s = g_malloc0(sizeof(*s)); char *filename; + GdkDisplay *window_display; s->window = gtk_window_new(GTK_WINDOW_TOPLEVEL); #if GTK_CHECK_VERSION(3, 2, 0) @@ -1937,7 +1938,9 @@ void gtk_display_init(DisplayState *ds, bool full_screen, bool grab_on_hover) bindtextdomain("qemu", CONFIG_QEMU_LOCALEDIR); textdomain("qemu"); - s->null_cursor = gdk_cursor_new(GDK_BLANK_CURSOR); + window_display = gtk_widget_get_display(s->window); + s->null_cursor = gdk_cursor_new_for_display(window_display, + GDK_BLANK_CURSOR); s->mouse_mode_notifier.notify = gd_mouse_mode_change; qemu_add_mouse_mode_change_notifier(&s->mouse_mode_notifier); -- 1.8.3.1