[evolution-data-server] Remove unused CAMEL_STORE_INFO_NAME.
- From: Matthew Barnes <mbarnes src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution-data-server] Remove unused CAMEL_STORE_INFO_NAME.
- Date: Fri, 16 Aug 2013 18:07:19 +0000 (UTC)
commit 74433c0fae444b4c0bdf006e42f1d3185e329f5a
Author: Matthew Barnes <mbarnes redhat com>
Date: Fri Aug 16 11:36:25 2013 -0400
Remove unused CAMEL_STORE_INFO_NAME.
CAMEL_STORE_INFO_NAME is just a variation of the path string,
and makes no sense to use with camel_store_info_set_string().
camel/camel-store-summary.c | 23 -----------------------
camel/camel-store-summary.h | 1 -
2 files changed, 0 insertions(+), 24 deletions(-)
---
diff --git a/camel/camel-store-summary.c b/camel/camel-store-summary.c
index 4aff234..3134142 100644
--- a/camel/camel-store-summary.c
+++ b/camel/camel-store-summary.c
@@ -246,12 +246,6 @@ store_summary_store_info_set_string (CamelStoreSummary *summary,
gint type,
const gchar *str)
{
- const gchar *p;
- gchar *v;
- gint len;
-
- g_assert (info != NULL);
-
switch (type) {
case CAMEL_STORE_INFO_PATH:
camel_store_summary_lock (summary, CAMEL_STORE_SUMMARY_SUMMARY_LOCK);
@@ -262,23 +256,6 @@ store_summary_store_info_set_string (CamelStoreSummary *summary,
summary->flags |= CAMEL_STORE_SUMMARY_DIRTY;
camel_store_summary_unlock (summary, CAMEL_STORE_SUMMARY_SUMMARY_LOCK);
break;
- case CAMEL_STORE_INFO_NAME:
- camel_store_summary_lock (summary, CAMEL_STORE_SUMMARY_SUMMARY_LOCK);
- g_hash_table_remove (summary->folders_path, (gchar *) camel_store_info_path (summary, info));
- p = strrchr (info->path, '/');
- if (p) {
- len = p - info->path + 1;
- v = g_malloc (len + strlen (str) + 1);
- memcpy (v, info->path, len);
- strcpy (v + len, str);
- } else {
- v = g_strdup (str);
- }
- g_free (info->path);
- info->path = v;
- g_hash_table_insert (summary->folders_path, (gchar *) camel_store_info_path (summary, info),
info);
- camel_store_summary_unlock (summary, CAMEL_STORE_SUMMARY_SUMMARY_LOCK);
- break;
}
}
diff --git a/camel/camel-store-summary.h b/camel/camel-store-summary.h
index fd90b31..5c9959e 100644
--- a/camel/camel-store-summary.h
+++ b/camel/camel-store-summary.h
@@ -65,7 +65,6 @@ typedef struct _CamelStoreInfo CamelStoreInfo;
enum {
CAMEL_STORE_INFO_PATH = 0,
- CAMEL_STORE_INFO_NAME,
CAMEL_STORE_INFO_LAST
};
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]