aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@ximian.com>2003-10-31 20:24:12 +0800
committerRodrigo Moya <rodrigo@src.gnome.org>2003-10-31 20:24:12 +0800
commita511462241b8c68eeaeb6aeddb0381b71836fb82 (patch)
tree31b1deedb3e1e3a79696f3ef41e76f12db60dac6
parent211e8e8b45c57f7828867f644f596aa8db453d0e (diff)
downloadgsoc2013-evolution-a511462241b8c68eeaeb6aeddb0381b71836fb82.tar
gsoc2013-evolution-a511462241b8c68eeaeb6aeddb0381b71836fb82.tar.gz
gsoc2013-evolution-a511462241b8c68eeaeb6aeddb0381b71836fb82.tar.bz2
gsoc2013-evolution-a511462241b8c68eeaeb6aeddb0381b71836fb82.tar.lz
gsoc2013-evolution-a511462241b8c68eeaeb6aeddb0381b71836fb82.tar.xz
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
-rw-r--r--calendar/ChangeLog5
-rw-r--r--calendar/gui/e-calendar-table.c4
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)