From 24e77716ce81735b648302bc118557f2c9df273d Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Thu, 19 Oct 2000 20:30:43 +0000 Subject: Update comment here so refresh_info isn't just for reconnects any more. * camel-folder.c (camel_folder_refresh_info): Update comment here so refresh_info isn't just for reconnects any more. Make the default implementation a no-op rather than an error. * providers/nntp/camel-nntp-folder.c: Move refresh_info impl into camel_nntp_folder_new, since it would have leaked memory and not done anything useful if it was called later. * providers/mbox/camel-mbox-folder.c: Remove no-longer-necessary refresh_info impl. * providers/imap/camel-imap-folder.c (camel_imap_folder_changed): Update imap_folder->exists, but don't actually load the new messages. This is a temporary workaround to deal with the IMAP provider stealing the message list focus at annoying times. (imap_copy_message_to, imap_move_message_to): Emit a folder_changed by hand, for now. svn path=/trunk/; revision=6046 --- camel/camel-folder.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'camel/camel-folder.c') diff --git a/camel/camel-folder.c b/camel/camel-folder.c index 9b38f79e53..792d3c5d01 100644 --- a/camel/camel-folder.c +++ b/camel/camel-folder.c @@ -251,8 +251,7 @@ camel_folder_sync (CamelFolder *folder, gboolean expunge, CamelException *ex) static void refresh_info (CamelFolder *folder, CamelException *ex) { - g_warning ("CamelFolder::refresh_info not implemented for `%s'", - camel_type_to_name (CAMEL_OBJECT_GET_TYPE (folder))); + /* No op */ } /** @@ -260,9 +259,7 @@ refresh_info (CamelFolder *folder, CamelException *ex) * @folder: The folder object * @ex: exception object * - * Updates a folder's summary to be in sync with its backing store - * (called upon creation and when the store's connection is lost - * and then reestablished). + * Updates a folder's summary to be in sync with its backing store. **/ void camel_folder_refresh_info (CamelFolder *folder, CamelException *ex) -- cgit