aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/local/camel-mbox-store.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2004-05-26 12:24:01 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-05-26 12:24:01 +0800
commit1c11041eebd485a471e842ba4f75834c2ce6e1f7 (patch)
treec708d5ff8c87af387e5ad790f15616053068e9f4 /camel/providers/local/camel-mbox-store.c
parentca6276f9e5e5813b6954e2869667458c3b1d9f10 (diff)
downloadgsoc2013-evolution-1c11041eebd485a471e842ba4f75834c2ce6e1f7.tar
gsoc2013-evolution-1c11041eebd485a471e842ba4f75834c2ce6e1f7.tar.gz
gsoc2013-evolution-1c11041eebd485a471e842ba4f75834c2ce6e1f7.tar.bz2
gsoc2013-evolution-1c11041eebd485a471e842ba4f75834c2ce6e1f7.tar.lz
gsoc2013-evolution-1c11041eebd485a471e842ba4f75834c2ce6e1f7.tar.xz
gsoc2013-evolution-1c11041eebd485a471e842ba4f75834c2ce6e1f7.tar.zst
gsoc2013-evolution-1c11041eebd485a471e842ba4f75834c2ce6e1f7.zip
removed.
2004-05-25 Not Zed <NotZed@Ximian.com> * camel-store.c (camel_folder_info_build_path): removed. * camel-store.h (CamelFolderInfo): removed 'path', fixed all callers. (struct _CamelStore): removed 'dir_sep' fixed all uses. svn path=/trunk/; revision=26089
Diffstat (limited to 'camel/providers/local/camel-mbox-store.c')
-rw-r--r--camel/providers/local/camel-mbox-store.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/camel/providers/local/camel-mbox-store.c b/camel/providers/local/camel-mbox-store.c
index 4893853689..a2bafd4ab0 100644
--- a/camel/providers/local/camel-mbox-store.c
+++ b/camel/providers/local/camel-mbox-store.c
@@ -333,7 +333,6 @@ delete_folder(CamelStore *store, const char *folder_name, CamelException *ex)
fi->name = g_path_get_basename(folder_name);
fi->uri = g_strdup_printf("mbox:%s#%s",((CamelService *) store)->url->path, folder_name);
fi->unread = -1;
- camel_folder_info_build_path(fi, '/');
camel_object_trigger_event(store, "folder_deleted", fi);
@@ -705,7 +704,6 @@ scan_dir(CamelStore *store, CamelURL *url, GHashTable *visited, CamelFolderInfo
fi->uri = camel_url_to_string (url, 0);
fi->name = short_name;
fi->full_name = full_name;
- fi->path = g_strdup_printf("/%s", full_name);
fi->unread = -1;
fi->total = -1;
@@ -815,7 +813,6 @@ get_folder_info(CamelStore *store, const char *top, guint32 flags, CamelExceptio
fi->full_name = g_strdup(top);
fi->unread = -1;
fi->total = -1;
- fi->path = g_strdup_printf("/%s", top);
subdir = g_strdup_printf("%s.sbd", path);
if (stat(subdir, &st) == 0) {