aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@ximian.com>2003-10-31 21:15:35 +0800
committerRodrigo Moya <rodrigo@src.gnome.org>2003-10-31 21:15:35 +0800
commit318ff6a39433c962150b5bd78e2bd13de7b637d8 (patch)
tree4c90ca30de2a556c2bccfca2d86bfbde355caec6
parenta511462241b8c68eeaeb6aeddb0381b71836fb82 (diff)
downloadgsoc2013-evolution-318ff6a39433c962150b5bd78e2bd13de7b637d8.tar
gsoc2013-evolution-318ff6a39433c962150b5bd78e2bd13de7b637d8.tar.gz
gsoc2013-evolution-318ff6a39433c962150b5bd78e2bd13de7b637d8.tar.bz2
gsoc2013-evolution-318ff6a39433c962150b5bd78e2bd13de7b637d8.tar.lz
gsoc2013-evolution-318ff6a39433c962150b5bd78e2bd13de7b637d8.tar.xz
gsoc2013-evolution-318ff6a39433c962150b5bd78e2bd13de7b637d8.tar.zst
gsoc2013-evolution-318ff6a39433c962150b5bd78e2bd13de7b637d8.zip
fixed mismatched condition in if/else statement.
2003-10-31 Rodrigo Moya <rodrigo@ximian.com> * gui/e-calendar-table.c (e_calendar_table_show_popup_menu): fixed mismatched condition in if/else statement. svn path=/trunk/; revision=23148
-rw-r--r--calendar/gui/e-calendar-table.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/e-calendar-table.c b/calendar/gui/e-calendar-table.c
index eaee5d8d8d..fdea4d33bb 100644
--- a/calendar/gui/e-calendar-table.c
+++ b/calendar/gui/e-calendar-table.c
@@ -1064,7 +1064,7 @@ e_calendar_table_show_popup_menu (ETable *table,
g_assert (comp_data != NULL);
if (n_selected == 1) {
- hide_mask = MASK_SINGLE;
+ hide_mask = MASK_MULTIPLE;
/* See if the task has the URL property set */
@@ -1072,7 +1072,7 @@ e_calendar_table_show_popup_menu (ETable *table,
if (!prop)
disable_mask |= MASK_LACKS_URL;
} else
- hide_mask = MASK_MULTIPLE;
+ hide_mask = MASK_SINGLE;
cal_client_is_read_only (comp_data->client, &read_only, NULL);
if (!read_only)