Use g_object_unref

svn path=/trunk/; revision=42190
This commit is contained in:
Anders Broman 2012-04-22 13:54:35 +00:00
parent 7dc39930a6
commit 9e09a1fd0f

View file

@ -593,7 +593,7 @@ static void set_busy_cursor(GdkWindow *w)
cursor = gdk_cursor_new(GDK_WATCH);
gdk_window_set_cursor(w, cursor);
gdk_flush();
gdk_cursor_unref(cursor);
g_object_unref(cursor);
}
static void unset_busy_cursor(GdkWindow *w)