From 9bc397a131c3392e6005ba344e64111d7fd8c683 Mon Sep 17 00:00:00 2001 From: Ettore Perazzoli Date: Tue, 4 Jul 2000 02:37:00 +0000 Subject: Get rid of unused function `camel_folder_summary_set_uid()'. svn path=/trunk/; revision=3882 --- camel/ChangeLog | 4 ++++ camel/camel-folder-summary.c | 7 ------- camel/camel-folder-summary.h | 1 - 3 files changed, 4 insertions(+), 8 deletions(-) (limited to 'camel') diff --git a/camel/ChangeLog b/camel/ChangeLog index 4257fe5eed..c7575b5f5d 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,7 @@ +2000-07-03 Ettore Perazzoli + + * camel-folder-summary.c (camel_folder_summary_set_uid): Removed. + 2000-07-03 Dan Winship * camel-folder-summary.c (message_info_new): Parse In-Reply-To diff --git a/camel/camel-folder-summary.c b/camel/camel-folder-summary.c index d10a02a0d7..1d4352ed67 100644 --- a/camel/camel-folder-summary.c +++ b/camel/camel-folder-summary.c @@ -260,13 +260,6 @@ camel_folder_summary_uid(CamelFolderSummary *s, const char *uid) return g_hash_table_lookup(s->messages_uid, uid); } -void -camel_folder_summary_set_uid(CamelFolderSummary *s, guint32 base) -{ - if (s->nextuid <= base) - s->nextuid = base+1; -} - guint32 camel_folder_summary_next_uid(CamelFolderSummary *s) { guint32 uid = s->nextuid++; diff --git a/camel/camel-folder-summary.h b/camel/camel-folder-summary.h index 46ae856ee6..ef2b036e9e 100644 --- a/camel/camel-folder-summary.h +++ b/camel/camel-folder-summary.h @@ -160,7 +160,6 @@ CamelFolderSummary *camel_folder_summary_new (void); void camel_folder_summary_set_filename(CamelFolderSummary *, const char *); void camel_folder_summary_set_index(CamelFolderSummary *, ibex *); -void camel_folder_summary_set_uid(CamelFolderSummary *, guint32); void camel_folder_summary_set_build_content(CamelFolderSummary *, gboolean state); guint32 camel_folder_summary_next_uid(CamelFolderSummary *s); -- cgit