diff options
author | Rodrigo Moya <rodrigo@ximian.com> | 2003-10-31 20:24:12 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2003-10-31 20:24:12 +0800 |
commit | a511462241b8c68eeaeb6aeddb0381b71836fb82 (patch) | |
tree | 31b1deedb3e1e3a79696f3ef41e76f12db60dac6 /calendar | |
parent | 211e8e8b45c57f7828867f644f596aa8db453d0e (diff) | |
download | gsoc2013-evolution-a511462241b8c68eeaeb6aeddb0381b71836fb82.tar.gz gsoc2013-evolution-a511462241b8c68eeaeb6aeddb0381b71836fb82.tar.zst gsoc2013-evolution-a511462241b8c68eeaeb6aeddb0381b71836fb82.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=23147
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/gui/e-calendar-table.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 5c6a6a0750..74c02a9b98 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,8 @@ +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. + 2003-10-30 Rodrigo Moya <rodrigo@ximian.com> * gui/e-tasks.[ch] (e_tasks_get_cal_client): removed. diff --git a/calendar/gui/e-calendar-table.c b/calendar/gui/e-calendar-table.c index fdea4d33bb..eaee5d8d8d 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_MULTIPLE; + hide_mask = MASK_SINGLE; /* 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_SINGLE; + hide_mask = MASK_MULTIPLE; cal_client_is_read_only (comp_data->client, &read_only, NULL); if (!read_only) |