Revision: 6753
Author: nogu.dev
Date: Sat Sep 11 01:15:19 2010
Log: * helper/toolbar-standalone-gtk.c
  - (button_press_event_cb): Use gdk_cursor_unref()
    instead of deprecated gdk_cursor_destroy().
http://code.google.com/p/uim/source/detail?r=6753

Modified:
 /trunk/helper/toolbar-standalone-gtk.c

=======================================
--- /trunk/helper/toolbar-standalone-gtk.c      Sat Sep 11 01:15:10 2010
+++ /trunk/helper/toolbar-standalone-gtk.c      Sat Sep 11 01:15:19 2010
@@ -79,7 +79,7 @@
                     GDK_POINTER_MOTION_MASK,
                     NULL,
                     cursor, event->time);
-    gdk_cursor_destroy(cursor);
+    gdk_cursor_unref(cursor);

     gtk_window_get_position(GTK_WINDOW(widget),
                            &window_drag_start_x,

Reply via email to