diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-09-30 00:05:23 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2011-09-30 00:05:49 +0800 |
commit | 3d98af62e582b48fe9c23c8f6e2397911cbce27c (patch) | |
tree | 2b90f76ed1dc43d637784509217890f2692a12db /plugins/publish-calendar | |
parent | f8e6c60b2facac19916b72323ce78dbfa137d00c (diff) | |
download | gsoc2013-evolution-3d98af62e582b48fe9c23c8f6e2397911cbce27c.tar.gz gsoc2013-evolution-3d98af62e582b48fe9c23c8f6e2397911cbce27c.tar.zst gsoc2013-evolution-3d98af62e582b48fe9c23c8f6e2397911cbce27c.zip |
Require GLib 2.30.
Drop all GLIB_CHECK_VERSION macros.
Diffstat (limited to 'plugins/publish-calendar')
-rw-r--r-- | plugins/publish-calendar/publish-calendar.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/plugins/publish-calendar/publish-calendar.c b/plugins/publish-calendar/publish-calendar.c index c55782985c..1ce9f17e41 100644 --- a/plugins/publish-calendar/publish-calendar.c +++ b/plugins/publish-calendar/publish-calendar.c @@ -252,11 +252,7 @@ unmount_done_cb (GObject *source_object, { GError *error = NULL; -#if GLIB_CHECK_VERSION(2,21,3) g_mount_unmount_with_operation_finish (G_MOUNT (source_object), result, &error); -#else - g_mount_unmount_finish (G_MOUNT (source_object), result, &error); -#endif if (error) { g_warning ("Unmount failed: %s", error->message); @@ -305,11 +301,7 @@ mount_ready_cb (GObject *source_object, mount = g_file_find_enclosing_mount (G_FILE (source_object), NULL, NULL); if (mount) -#if GLIB_CHECK_VERSION(2,21,3) g_mount_unmount_with_operation (mount, G_MOUNT_UNMOUNT_NONE, NULL, NULL, unmount_done_cb, NULL); -#else - g_mount_unmount (mount, G_MOUNT_UNMOUNT_NONE, NULL, unmount_done_cb, NULL); -#endif g_object_unref (source_object); } |