diff options
author | 0 <NotZed@Ximian.com> | 2001-09-11 08:26:29 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2001-09-11 08:26:29 +0800 |
commit | ec9803b91dc499b6864c1d1a6a8cf615760d7649 (patch) | |
tree | 60a113d97c8db6e43902e8feb808e64192ba670b /camel/providers | |
parent | 2e238a7ebc19c49d607f8e17322540291ed67ad7 (diff) | |
download | gsoc2013-evolution-ec9803b91dc499b6864c1d1a6a8cf615760d7649.tar.gz gsoc2013-evolution-ec9803b91dc499b6864c1d1a6a8cf615760d7649.tar.zst gsoc2013-evolution-ec9803b91dc499b6864c1d1a6a8cf615760d7649.zip |
Progress reporting while moving messages.
2001-09-10 <NotZed@Ximian.com>
* camel-folder.c (move_messages_to): Progress reporting while
moving messages.
* camel-store.c (camel_store_delete_folder): Make sure we remove
the folder from our vtrash, if we have it in our opened set, and
also remove it from our hashtable.
(camel_store_rename_folder): Remove the old folder name from the
folder cahce, if it is there.
svn path=/trunk/; revision=12758
Diffstat (limited to 'camel/providers')
-rw-r--r-- | camel/providers/local/camel-mbox-summary.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/camel/providers/local/camel-mbox-summary.c b/camel/providers/local/camel-mbox-summary.c index a1b563dc69..d1c9c311e5 100644 --- a/camel/providers/local/camel-mbox-summary.c +++ b/camel/providers/local/camel-mbox-summary.c @@ -246,13 +246,13 @@ summary_rebuild(CamelMboxSummary *mbs, off_t offset, CamelException *ex) /* FIXME: If there is a failure, it shouldn't clear the summary and restart, it should try and merge the summary info's. This is a bit tricky. */ - camel_operation_start(NULL, _("Summarizing folder")); + camel_operation_start(NULL, _("Storing folder")); fd = open(cls->folder_path, O_RDONLY); if (fd == -1) { printf("%s failed to open: %s\n", cls->folder_path, strerror(errno)); - camel_exception_setv(ex, 1, _("Could not open folder: %s: summarizing from position %ld: %s"), - cls->folder_path, offset, strerror(errno)); + camel_exception_setv(ex, 1, _("Could not open folder: %s: %s"), + cls->folder_path, strerror(errno)); camel_operation_end(NULL); return -1; } @@ -368,7 +368,7 @@ mbox_summary_check(CamelLocalSummary *cls, CamelFolderChangeInfo *changes, Camel /* check if the summary is up-to-date */ if (stat(cls->folder_path, &st) == -1) { camel_folder_summary_clear(s); - camel_exception_setv(ex, 1, _("Cannot summarize folder: %s: %s"), cls->folder_path, strerror(errno)); + camel_exception_setv(ex, 1, _("Cannot check folder: %s: %s"), cls->folder_path, strerror(errno)); return -1; } |