* [Qemu-devel] [PATCH] ui/gtk: Use gtk_widget_get_window() to support both gtk2 and gtk3
@ 2013-04-22 16:34 Ozan Çağlayan
2013-04-24 18:24 ` Anthony Liguori
0 siblings, 1 reply; 4+ messages in thread
From: Ozan Çağlayan @ 2013-04-22 16:34 UTC (permalink / raw)
To: qemu-devel; +Cc: Ozan Çağlayan
This fixes build with gtk+-3.0.
---
ui/gtk.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ui/gtk.c b/ui/gtk.c
index b46997a..4110342 100644
--- a/ui/gtk.c
+++ b/ui/gtk.c
@@ -337,7 +337,7 @@ static void gd_mouse_set(DisplayChangeListener *dcl,
GtkDisplayState *s = container_of(dcl, GtkDisplayState, dcl);
gint x_root, y_root;
- gdk_window_get_root_coords(s->drawing_area->window,
+ gdk_window_get_root_coords(gtk_widget_get_window(s->drawing_area),
x, y, &x_root, &y_root);
gdk_display_warp_pointer(gtk_widget_get_display(s->drawing_area),
gtk_widget_get_screen(s->drawing_area),
@@ -357,7 +357,7 @@ static void gd_cursor_define(DisplayChangeListener *dcl,
NULL, NULL);
cursor = gdk_cursor_new_from_pixbuf(gtk_widget_get_display(s->drawing_area),
pixbuf, c->hot_x, c->hot_y);
- gdk_window_set_cursor(s->drawing_area->window, cursor);
+ gdk_window_set_cursor(gtk_widget_get_window(s->drawing_area), cursor);
g_object_unref(pixbuf);
g_object_unref(cursor);
}
--
1.8.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Qemu-devel] [PATCH] ui/gtk: Use gtk_widget_get_window() to support both gtk2 and gtk3
@ 2013-04-23 10:03 Ozan Çağlayan
2013-04-24 18:24 ` Anthony Liguori
0 siblings, 1 reply; 4+ messages in thread
From: Ozan Çağlayan @ 2013-04-23 10:03 UTC (permalink / raw)
To: qemu-devel; +Cc: aliguori, Ozan Çağlayan
This fixes build with gtk+-3.0.
Signed-off-by: Ozan Çağlayan <ozancag@gmail.com>
---
ui/gtk.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ui/gtk.c b/ui/gtk.c
index b46997a..4110342 100644
--- a/ui/gtk.c
+++ b/ui/gtk.c
@@ -337,7 +337,7 @@ static void gd_mouse_set(DisplayChangeListener *dcl,
GtkDisplayState *s = container_of(dcl, GtkDisplayState, dcl);
gint x_root, y_root;
- gdk_window_get_root_coords(s->drawing_area->window,
+ gdk_window_get_root_coords(gtk_widget_get_window(s->drawing_area),
x, y, &x_root, &y_root);
gdk_display_warp_pointer(gtk_widget_get_display(s->drawing_area),
gtk_widget_get_screen(s->drawing_area),
@@ -357,7 +357,7 @@ static void gd_cursor_define(DisplayChangeListener *dcl,
NULL, NULL);
cursor = gdk_cursor_new_from_pixbuf(gtk_widget_get_display(s->drawing_area),
pixbuf, c->hot_x, c->hot_y);
- gdk_window_set_cursor(s->drawing_area->window, cursor);
+ gdk_window_set_cursor(gtk_widget_get_window(s->drawing_area), cursor);
g_object_unref(pixbuf);
g_object_unref(cursor);
}
--
1.8.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-04-24 18:25 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-22 16:34 [Qemu-devel] [PATCH] ui/gtk: Use gtk_widget_get_window() to support both gtk2 and gtk3 Ozan Çağlayan
2013-04-24 18:24 ` Anthony Liguori
-- strict thread matches above, loose matches on Subject: below --
2013-04-23 10:03 Ozan Çağlayan
2013-04-24 18:24 ` Anthony Liguori
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).