diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-02-19 04:11:01 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-02-19 04:11:01 +0800 |
commit | 2f46886814d35618ad234e474a00a6ca977a13c3 (patch) | |
tree | e4531befd65ff29d4d4d93edd6c26751bf50a154 /mail/folder-browser-ui.c | |
parent | ebb7a2c19165d7b6afa00bdf86fb89c0ed35108f (diff) | |
download | gsoc2013-evolution-2f46886814d35618ad234e474a00a6ca977a13c3.tar.gz gsoc2013-evolution-2f46886814d35618ad234e474a00a6ca977a13c3.tar.zst gsoc2013-evolution-2f46886814d35618ad234e474a00a6ca977a13c3.zip |
Removed. (lookup_signature): Removed. (xml_get_int): Removed.
2003-02-18 Jeffrey Stedfast <fejj@ximian.com>
* mail-config.c (uri_to_key): Removed.
(lookup_signature): Removed.
(xml_get_int): Removed.
(xml_get_bool): Removed.
(mail_config_get_time_24hour): Removed.
* evolution-mail.schemas: s/long/int/g and change default_account
to be a string instead of an int.
* mail-config.c (mail_config_get_default_account): default_account
now uses the account uid, so change the code a bit to match uid
strings rather than use an index.
(mail_config_remove_account): Same here. simplifies the code a
bunch.
(mail_config_set_default_account): Here too.
* folder-browser-ui.c (folder_browser_ui_setup_view_menus): Update
the GalView path.
svn path=/trunk/; revision=19932
Diffstat (limited to 'mail/folder-browser-ui.c')
-rw-r--r-- | mail/folder-browser-ui.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/mail/folder-browser-ui.c b/mail/folder-browser-ui.c index 6680d8dd2a..c265ad62c3 100644 --- a/mail/folder-browser-ui.c +++ b/mail/folder-browser-ui.c @@ -357,10 +357,9 @@ folder_browser_ui_setup_view_menus (FolderBrowser *fb) gal_view_collection_set_title (collection, _("Mail")); local_dir = gnome_util_prepend_user_home ("/evolution/views/mail/"); - gal_view_collection_set_storage_directories - (collection, - EVOLUTION_GALVIEWSDIR "/evolution/views/mail/", - local_dir); + gal_view_collection_set_storage_directories (collection, + EVOLUTION_GALVIEWSDIR "/mail/", + local_dir); g_free (local_dir); spec = e_table_specification_new (); |