Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBruno Coudoin <bcoudoin@src.gnome.org>2003-12-23 19:50:40 (GMT)
committer Bruno Coudoin <bcoudoin@src.gnome.org>2003-12-23 19:50:40 (GMT)
commit2de7718b6aded4f61d04322071e5ac483fd360ce (patch)
tree0360dfbb3cb4eb793694220a2384d1ac49eec26f /src
parent4c883cd51852bf819d277cf6ce9c1aaf6c44543c (diff)
created by Bruno replaced cursor cleanup by a non deprecated func.
* boards/boardicons/redraw_symmetry.png: created by Bruno * src/gcompris/gcompris.c: (gcompris_set_cursor): replaced cursor cleanup by a non deprecated func.
Diffstat (limited to 'src')
-rw-r--r--src/gcompris/gcompris.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gcompris/gcompris.c b/src/gcompris/gcompris.c
index e92bfa6..eb1af33 100644
--- a/src/gcompris/gcompris.c
+++ b/src/gcompris/gcompris.c
@@ -1,6 +1,6 @@
/* gcompris - gcompris.c
*
- * Time-stamp: <2003/12/08 23:09:57 bcoudoin>
+ * Time-stamp: <2003/12/21 20:51:25 bcoudoin>
*
* Copyright (C) 2000-2003 Bruno Coudoin
*
@@ -348,7 +348,7 @@ void gcompris_set_cursor(guint gdk_cursor_type)
cursor = gdk_cursor_new_from_data(bits, 40 , 40, &fg, &bg, 0, 0);
gdk_window_set_cursor(window->window, cursor);
- gdk_cursor_destroy(cursor);
+ gdk_cursor_unref(cursor);
}
}