diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-07-14 04:56:00 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-07-14 22:26:47 +0800 |
commit | d3de5757b511f5319588322a9c2bcdcd23cc8bb6 (patch) | |
tree | 10fa752c84e1587d6413a6799b30083f29528aad /plugins | |
parent | 902384a3419e107e3179c6b9c5e63193dd0f272b (diff) | |
download | gsoc2013-evolution-d3de5757b511f5319588322a9c2bcdcd23cc8bb6.tar.gz gsoc2013-evolution-d3de5757b511f5319588322a9c2bcdcd23cc8bb6.tar.zst gsoc2013-evolution-d3de5757b511f5319588322a9c2bcdcd23cc8bb6.zip |
Version check for the deprecation workaround was off by one.
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/publish-calendar/publish-calendar.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/publish-calendar/publish-calendar.c b/plugins/publish-calendar/publish-calendar.c index 99ab2f9340..e0cd35b069 100644 --- a/plugins/publish-calendar/publish-calendar.c +++ b/plugins/publish-calendar/publish-calendar.c @@ -129,7 +129,7 @@ unmount_done_cb (GObject *source_object, GAsyncResult *res, gpointer user_data) { GError *error = NULL; -#if GLIB_CHECK_VERSION(2,21,4) +#if GLIB_CHECK_VERSION(2,21,3) g_mount_unmount_with_operation_finish (G_MOUNT (source_object), res, &error); #else g_mount_unmount_finish (G_MOUNT (source_object), res, &error); @@ -181,7 +181,7 @@ mount_ready_cb (GObject *source_object, GAsyncResult *res, gpointer user_data) mount = g_file_find_enclosing_mount (G_FILE (source_object), NULL, NULL); if (mount) -#if GLIB_CHECK_VERSION(2,21,4) +#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); |