diff options
| author | Anthony Liguori <aliguori@us.ibm.com> | 2013-06-03 15:37:23 -0500 |
|---|---|---|
| committer | Anthony Liguori <aliguori@us.ibm.com> | 2013-06-03 16:14:05 -0500 |
| commit | 171392406d8e230d62e5ebf4805f71460854b8ec (patch) | |
| tree | 2fd8f52d59aba2775f382fa5e160c56b66ef0b7f /ui/gtk.c | |
| parent | 41686a960805ed561158c7e4809f0c9f92f1d8ec (diff) | |
| download | focaccia-qemu-171392406d8e230d62e5ebf4805f71460854b8ec.tar.gz focaccia-qemu-171392406d8e230d62e5ebf4805f71460854b8ec.zip | |
gtk: don't use g_object_unref on GdkCursor
It's not a GObject. Cc: Gerd Hoffman <kraxel@redhat.com> Reported-by: Michael Tokarev <mjt@tls.msk.ru> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> --- v1 -> v2 - Fix summary to agree with code (Peter)
Diffstat (limited to 'ui/gtk.c')
| -rw-r--r-- | ui/gtk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/gtk.c b/ui/gtk.c index 8dc90412c1..3bc284227e 100644 --- a/ui/gtk.c +++ b/ui/gtk.c @@ -377,7 +377,7 @@ static void gd_cursor_define(DisplayChangeListener *dcl, pixbuf, c->hot_x, c->hot_y); gdk_window_set_cursor(gtk_widget_get_window(s->drawing_area), cursor); g_object_unref(pixbuf); - g_object_unref(cursor); + gdk_cursor_unref(cursor); } static void gd_switch(DisplayChangeListener *dcl, |