diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2002-10-24 01:45:58 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2002-10-24 01:45:58 +0800 |
commit | d0782a45b1e4772162a31ac768d33978b122695a (patch) | |
tree | fec0f4eaa3b80a79d81b8f51e4326564b5e3f3a0 /shell/e-shell.c | |
parent | eac24fd792678e164f36200cda0ad4fca304c1f4 (diff) | |
download | gsoc2013-evolution-d0782a45b1e4772162a31ac768d33978b122695a.tar.gz gsoc2013-evolution-d0782a45b1e4772162a31ac768d33978b122695a.tar.zst gsoc2013-evolution-d0782a45b1e4772162a31ac768d33978b122695a.zip |
Set the is_stock flag to TRUE for the summary folder.
* e-shell.c (setup_local_storage): Set the is_stock flag to TRUE
for the summary folder.
* e-shell-view.c (setup_verb_sensitivity_for_folder): Don't allow
folder operations on pseudo-folders that have a NULL physical_uri.
* e-corba-storage.c (async_remove_folder): Make sure the folder
has a physical URI. [#30950]
* e-shell-shared-folder-picker-dialog.c
(setup_server_option_menu): Use
e_utf8_gtk_menu_item_new_with_label() to create the option menu
items from the storage's UTF-8 name. [#31564]
svn path=/trunk/; revision=18419
Diffstat (limited to 'shell/e-shell.c')
-rw-r--r-- | shell/e-shell.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/shell/e-shell.c b/shell/e-shell.c index 33cdf23751..203f3bbec4 100644 --- a/shell/e-shell.c +++ b/shell/e-shell.c @@ -747,6 +747,7 @@ setup_local_storage (EShell *shell) summary_folder = e_folder_new (U_("Summary"), "summary", ""); e_folder_set_physical_uri (summary_folder, "/"); + e_folder_set_is_stock (summary_folder, TRUE); priv->summary_storage = e_storage_new (E_SUMMARY_STORAGE_NAME, summary_folder); e_storage_set_add_storage (priv->storage_set, priv->summary_storage); |