diff options
author | Milan Crha <mcrha@redhat.com> | 2011-06-28 00:04:57 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-06-30 00:42:34 +0800 |
commit | adc1173159d4d5d953340f8f3c813681007de524 (patch) | |
tree | 8a0bfc8e9a11e3489f4def2bbb7fe0a4bd645aa2 /modules/calendar/e-cal-shell-sidebar.c | |
parent | 8894b72f2045388990b5696f3e8db97b9544ccf4 (diff) | |
download | gsoc2013-evolution-adc1173159d4d5d953340f8f3c813681007de524.tar.gz gsoc2013-evolution-adc1173159d4d5d953340f8f3c813681007de524.tar.zst gsoc2013-evolution-adc1173159d4d5d953340f8f3c813681007de524.zip |
Check for cancelled GIO operation error code too
Diffstat (limited to 'modules/calendar/e-cal-shell-sidebar.c')
-rw-r--r-- | modules/calendar/e-cal-shell-sidebar.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/calendar/e-cal-shell-sidebar.c b/modules/calendar/e-cal-shell-sidebar.c index efa233e019..e296f6ff31 100644 --- a/modules/calendar/e-cal-shell-sidebar.c +++ b/modules/calendar/e-cal-shell-sidebar.c @@ -325,8 +325,8 @@ cal_shell_sidebar_default_loaded_cb (GObject *source_object, GAsyncResult *resul if (!e_client_utils_open_new_finish (E_SOURCE (source_object), result, &client, &error)) client = NULL; - if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED) || - g_error_matches (error, E_CLIENT_ERROR, E_CLIENT_ERROR_CANCELLED)) { + if (g_error_matches (error, E_CLIENT_ERROR, E_CLIENT_ERROR_CANCELLED) || + g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) { g_error_free (error); goto exit; } |