From 318ff6a39433c962150b5bd78e2bd13de7b637d8 Mon Sep 17 00:00:00 2001 From: Rodrigo Moya Date: Fri, 31 Oct 2003 13:15:35 +0000 Subject: fixed mismatched condition in if/else statement. 2003-10-31 Rodrigo Moya * gui/e-calendar-table.c (e_calendar_table_show_popup_menu): fixed mismatched condition in if/else statement. svn path=/trunk/; revision=23148 --- calendar/gui/e-calendar-table.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'calendar/gui') 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) -- cgit v1.2.3