aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2012-04-22 13:54:35 +0000
committerAnders Broman <anders.broman@ericsson.com>2012-04-22 13:54:35 +0000
commit9e09a1fd0f42871e9f2f73d9dc0558fc74d578cf (patch)
treeffe0aa8a16d47529a480ccb097a4c3e67bb4b965 /ui
parent7dc39930a66a0472ca0b3ca76fd81e97ac0b9a89 (diff)
Use g_object_unref
svn path=/trunk/; revision=42190
Diffstat (limited to 'ui')
-rw-r--r--ui/gtk/tcp_graph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/gtk/tcp_graph.c b/ui/gtk/tcp_graph.c
index e50051cf7f..d7bd311ea9 100644
--- a/ui/gtk/tcp_graph.c
+++ b/ui/gtk/tcp_graph.c
@@ -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)