[evolution/wip/gsettings] Fixes a crash while creating VeeFolders at the root level.
- From: Rodrigo Moya <rodrigo src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution/wip/gsettings] Fixes a crash while creating VeeFolders at the root level.
- Date: Wed, 29 Jun 2011 17:52:04 +0000 (UTC)
commit 8df5f498514789dd4f596483a9daa0da93b5136f
Author: Chenthill Palanisamy <pchenthill novell com>
Date: Tue Jun 7 19:05:03 2011 +0530
Fixes a crash while creating VeeFolders at the root level.
mail/em-folder-utils.c | 8 +++++++-
1 files changed, 7 insertions(+), 1 deletions(-)
---
diff --git a/mail/em-folder-utils.c b/mail/em-folder-utils.c
index 27ba1c1..589729b 100644
--- a/mail/em-folder-utils.c
+++ b/mail/em-folder-utils.c
@@ -594,9 +594,15 @@ em_folder_utils_create_folder (GtkWindow *parent,
/* HACK: we need to create vfolders using the vfolder editor */
if (CAMEL_IS_VEE_STORE (store)) {
EFilterRule *rule;
+ const gchar *skip_slash;
+
+ if (*folder_name == '/')
+ skip_slash = folder_name + 1;
+ else
+ skip_slash = folder_name;
rule = em_vfolder_rule_new (backend);
- e_filter_rule_set_name (rule, folder_name);
+ e_filter_rule_set_name (rule, skip_slash);
vfolder_gui_add_rule (EM_VFOLDER_RULE (rule));
} else {
AsyncContext *context;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]