diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-11-19 20:38:59 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-11-19 20:40:54 +0800 |
commit | 72861cffee5a3f9a5434fe0a94c7ec60beec1cc2 (patch) | |
tree | e86a4a260b316811d39905792dc1ddac70911f07 | |
parent | 52a16bed13a045f8356c1d6e7a3a511d60cbf6b1 (diff) | |
download | gsoc2013-evolution-72861cffee5a3f9a5434fe0a94c7ec60beec1cc2.tar.gz gsoc2013-evolution-72861cffee5a3f9a5434fe0a94c7ec60beec1cc2.tar.zst gsoc2013-evolution-72861cffee5a3f9a5434fe0a94c7ec60beec1cc2.zip |
Disallow renaming a non-deletable ESource.
This is a partial solution to bug #600397.
-rw-r--r-- | modules/addressbook/e-book-shell-view.c | 2 | ||||
-rw-r--r-- | modules/calendar/e-cal-shell-view.c | 2 | ||||
-rw-r--r-- | modules/calendar/e-memo-shell-view.c | 2 | ||||
-rw-r--r-- | modules/calendar/e-task-shell-view.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/modules/addressbook/e-book-shell-view.c b/modules/addressbook/e-book-shell-view.c index 568bc4567a..e7d26d727d 100644 --- a/modules/addressbook/e-book-shell-view.c +++ b/modules/addressbook/e-book-shell-view.c @@ -299,7 +299,7 @@ book_shell_view_update_actions (EShellView *shell_view) gtk_action_set_sensitive (action, sensitive); action = ACTION (ADDRESS_BOOK_RENAME); - sensitive = has_primary_source; + sensitive = can_delete_primary_source; gtk_action_set_sensitive (action, sensitive); action = ACTION (ADDRESS_BOOK_STOP); diff --git a/modules/calendar/e-cal-shell-view.c b/modules/calendar/e-cal-shell-view.c index 635f0545e7..44e0883527 100644 --- a/modules/calendar/e-cal-shell-view.c +++ b/modules/calendar/e-cal-shell-view.c @@ -378,7 +378,7 @@ cal_shell_view_update_actions (EShellView *shell_view) gtk_action_set_sensitive (action, sensitive); action = ACTION (CALENDAR_RENAME); - sensitive = has_primary_source; + sensitive = can_delete_primary_source; gtk_action_set_sensitive (action, sensitive); action = ACTION (EVENT_CLIPBOARD_COPY); diff --git a/modules/calendar/e-memo-shell-view.c b/modules/calendar/e-memo-shell-view.c index 43dd7e34ea..5cc8e159bb 100644 --- a/modules/calendar/e-memo-shell-view.c +++ b/modules/calendar/e-memo-shell-view.c @@ -243,7 +243,7 @@ memo_shell_view_update_actions (EShellView *shell_view) gtk_action_set_sensitive (action, sensitive); action = ACTION (MEMO_LIST_RENAME); - sensitive = has_primary_source; + sensitive = can_delete_primary_source; gtk_action_set_sensitive (action, sensitive); action = ACTION (MEMO_OPEN); diff --git a/modules/calendar/e-task-shell-view.c b/modules/calendar/e-task-shell-view.c index bab7fa1539..1bb2820911 100644 --- a/modules/calendar/e-task-shell-view.c +++ b/modules/calendar/e-task-shell-view.c @@ -370,7 +370,7 @@ task_shell_view_update_actions (EShellView *shell_view) gtk_action_set_sensitive (action, sensitive); action = ACTION (TASK_LIST_RENAME); - sensitive = has_primary_source; + sensitive = can_delete_primary_source; gtk_action_set_sensitive (action, sensitive); action = ACTION (TASK_MARK_COMPLETE); |