From: Gerd Hoffmann <kraxel@redhat.com>
To: qemu-devel@nongnu.org
Cc: Gerd Hoffmann <kraxel@redhat.com>, Max Reitz <mreitz@redhat.com>
Subject: [Qemu-devel] [PULL 5/5] gtk: Replace gdk_cursor_new()
Date: Fri, 29 May 2015 12:07:16 +0200 [thread overview]
Message-ID: <1432894036-28513-6-git-send-email-kraxel@redhat.com> (raw)
In-Reply-To: <1432894036-28513-1-git-send-email-kraxel@redhat.com>
From: Max Reitz <mreitz@redhat.com>
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 <mreitz@redhat.com>
Reviewed-by: Cole Robinson <crobinso@redhat.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
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
next prev parent reply other threads:[~2015-05-29 10:07 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-29 10:07 [Qemu-devel] [PULL 0/5] gtk: add opengl rendering support Gerd Hoffmann
2015-05-29 10:07 ` [Qemu-devel] [PULL 1/5] ui: use libexpoxy Gerd Hoffmann
2015-05-29 10:07 ` [Qemu-devel] [PULL 2/5] ui: shader.h protect against double inclusion Gerd Hoffmann
2015-05-29 10:07 ` [Qemu-devel] [PULL 3/5] ui: add egl-helpers Gerd Hoffmann
2015-05-29 10:07 ` [Qemu-devel] [PULL 4/5] gtk: add opengl support, using egl Gerd Hoffmann
2015-06-05 10:20 ` Paolo Bonzini
2015-06-05 11:01 ` Gerd Hoffmann
2015-06-05 11:09 ` Gerd Hoffmann
2015-06-05 12:50 ` Gerd Hoffmann
2015-06-08 12:57 ` Markus Armbruster
2015-05-29 10:07 ` Gerd Hoffmann [this message]
2015-05-29 14:31 ` [Qemu-devel] [PULL 0/5] gtk: add opengl rendering support Peter Maydell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1432894036-28513-6-git-send-email-kraxel@redhat.com \
--to=kraxel@redhat.com \
--cc=mreitz@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).