aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2012-08-18 20:56:12 +0800
committerMatthew Barnes <mbarnes@redhat.com>2012-08-18 21:09:11 +0800
commit6480444d706ddc079bf472a4ef74be31b4e3b954 (patch)
tree2675e787c52614444cde0a095cc7a63387aaf158
parent0f7ae17400464c521f80d3e61b1689c034a5155e (diff)
downloadgsoc2013-evolution-6480444d706ddc079bf472a4ef74be31b4e3b954.tar
gsoc2013-evolution-6480444d706ddc079bf472a4ef74be31b4e3b954.tar.gz
gsoc2013-evolution-6480444d706ddc079bf472a4ef74be31b4e3b954.tar.bz2
gsoc2013-evolution-6480444d706ddc079bf472a4ef74be31b4e3b954.tar.lz
gsoc2013-evolution-6480444d706ddc079bf472a4ef74be31b4e3b954.tar.xz
gsoc2013-evolution-6480444d706ddc079bf472a4ef74be31b4e3b954.tar.zst
gsoc2013-evolution-6480444d706ddc079bf472a4ef74be31b4e3b954.zip
action_memo_list_delete_cb(): Fix typo.
-rw-r--r--modules/calendar/e-memo-shell-view-actions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/calendar/e-memo-shell-view-actions.c b/modules/calendar/e-memo-shell-view-actions.c
index 4a433a6f88..1550afeae8 100644
--- a/modules/calendar/e-memo-shell-view-actions.c
+++ b/modules/calendar/e-memo-shell-view-actions.c
@@ -178,7 +178,7 @@ action_memo_list_delete_cb (GtkAction *action,
"calendar:prompt-delete-memo-list",
e_source_get_display_name (source), NULL);
- if (response != GTK_RESPONSE_YES)
+ if (response == GTK_RESPONSE_YES)
e_shell_view_remove_source (shell_view, source);
}