summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/gs-grab-x11.c4
-rw-r--r--src/gs-lock-plug.c8
2 files changed, 12 insertions, 0 deletions
diff --git a/src/gs-grab-x11.c b/src/gs-grab-x11.c
index 7367034..421398b 100644
--- a/src/gs-grab-x11.c
+++ b/src/gs-grab-x11.c
@@ -232,7 +232,11 @@ gs_grab_get_mouse (GSGrab *grab,
grab->priv->mouse_hide_cursor = hide_cursor;
}
+#if GTK_CHECK_VERSION (3, 0, 0)
+ g_object_unref (cursor);
+#else
gdk_cursor_unref (cursor);
+#endif
return status;
}
diff --git a/src/gs-lock-plug.c b/src/gs-lock-plug.c
index 5fe6d60..9585a05 100644
--- a/src/gs-lock-plug.c
+++ b/src/gs-lock-plug.c
@@ -1564,7 +1564,11 @@ gs_lock_plug_set_busy (GSLockPlug *plug)
cursor = gdk_cursor_new (GDK_WATCH);
gdk_window_set_cursor (gtk_widget_get_window (top_level), cursor);
+#if GTK_CHECK_VERSION (3, 0, 0)
+ g_object_unref (cursor);
+#else
gdk_cursor_unref (cursor);
+#endif
}
void
@@ -1577,7 +1581,11 @@ gs_lock_plug_set_ready (GSLockPlug *plug)
cursor = gdk_cursor_new (GDK_LEFT_PTR);
gdk_window_set_cursor (gtk_widget_get_window (top_level), cursor);
+#if GTK_CHECK_VERSION (3, 0, 0)
+ g_object_unref (cursor);
+#else
gdk_cursor_unref (cursor);
+#endif
}
void