diff options
author | Benjamin Otte <otte@redhat.com> | 2010-12-20 03:14:38 +0100 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2010-12-21 12:07:05 -0500 |
commit | 8f1f7439033e85ebf480c1c62e8e4647cba80b97 (patch) | |
tree | c5550e16f4a45329ce6d3523ef29fcdfc32f27ea /gtk/gtkfilechooserentry.c | |
parent | a9637f05b672666c6331cf4ca5d6f64734647b78 (diff) | |
download | gtk+-8f1f7439033e85ebf480c1c62e8e4647cba80b97.tar.gz |
gtk: Use g_object_unref instead of gdk_cursor_unref
Diffstat (limited to 'gtk/gtkfilechooserentry.c')
-rw-r--r-- | gtk/gtkfilechooserentry.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkfilechooserentry.c b/gtk/gtkfilechooserentry.c index 009d842f37..03ff782cf8 100644 --- a/gtk/gtkfilechooserentry.c +++ b/gtk/gtkfilechooserentry.c @@ -914,7 +914,7 @@ set_invisible_mouse_cursor (GdkWindow *window) gdk_window_set_cursor (window, cursor); - gdk_cursor_unref (cursor); + g_object_unref (cursor); } static void |