diff options
Diffstat (limited to 'src/gs-grab-x11.c')
-rw-r--r-- | src/gs-grab-x11.c | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/src/gs-grab-x11.c b/src/gs-grab-x11.c index 72809d5..83b04e0 100644 --- a/src/gs-grab-x11.c +++ b/src/gs-grab-x11.c @@ -58,33 +58,6 @@ struct GSGrabPrivate GtkWidget *invisible; }; -#if !GTK_CHECK_VERSION (3, 0, 0) -static GdkCursor * -get_cursor (void) -{ - GdkBitmap *empty_bitmap; - GdkCursor *cursor; - GdkColor useless; - char invisible_cursor_bits [] = { 0x0 }; - - useless.red = useless.green = useless.blue = 0; - useless.pixel = 0; - - empty_bitmap = gdk_bitmap_create_from_data (NULL, - invisible_cursor_bits, - 1, 1); - - cursor = gdk_cursor_new_from_pixmap (empty_bitmap, - empty_bitmap, - &useless, - &useless, 0, 0); - - g_object_unref (empty_bitmap); - - return cursor; -} -#endif - static const char * grab_string (int status) { @@ -218,11 +191,7 @@ gs_grab_get_mouse (GSGrab *grab, g_return_val_if_fail (window != NULL, FALSE); g_return_val_if_fail (screen != NULL, FALSE); -#if GTK_CHECK_VERSION (3, 0, 0) cursor = gdk_cursor_new (GDK_BLANK_CURSOR); -#else - cursor = get_cursor (); -#endif gs_debug ("Grabbing mouse widget=%X", (guint32) GDK_WINDOW_XID (window)); status = gdk_pointer_grab (window, TRUE, 0, NULL, |