]> Pileus Git - ~andy/gtk/blobdiff - gdk/gdkcursor.c
Annotate gdk_display_manager_list_displays return value
[~andy/gtk] / gdk / gdkcursor.c
index 1038d7347991856a8415ac5b362346acf85cce71..a3677e9f8f1eb1291170c5220d604e91d5a4b4a9 100644 (file)
@@ -24,7 +24,7 @@
  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
  */
 
-#include <config.h>
+#include "config.h"
 #include "gdkcursor.h"
 #include "gdkdisplay.h"
 #include "gdkinternals.h"
@@ -36,7 +36,7 @@ gdk_cursor_get_type (void)
   static GType our_type = 0;
   
   if (our_type == 0)
-    our_type = g_boxed_type_register_static ("GdkCursor",
+    our_type = g_boxed_type_register_static (g_intern_static_string ("GdkCursor"),
                                             (GBoxedCopyFunc)gdk_cursor_ref,
                                             (GBoxedFreeFunc)gdk_cursor_unref);
   return our_type;
@@ -88,8 +88,7 @@ gdk_cursor_unref (GdkCursor *cursor)
  * Creates a new cursor from the set of builtin cursors for the default display.
  * See gdk_cursor_new_for_display().
  *
- * To make the cursor invisible, use gdk_cursor_new_from_pixmap() to create
- * a cursor with no pixels in it.
+ * To make the cursor invisible, use %GDK_BLANK_CURSOR.
  * 
  * Return value: a new #GdkCursor
  **/