aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-folder-utils.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2011-06-05 04:53:10 +0800
committerRodrigo Moya <rodrigo@gnome-db.org>2011-06-30 00:42:26 +0800
commite7954c3f251aabbf95d099159709c8c66dfedc44 (patch)
tree08b6fbba02f05aa622cd54f45da223ef43066bb3 /mail/em-folder-utils.c
parentdcaf6c52082765c2586a7d35b56b3dc417aa988d (diff)
downloadgsoc2013-evolution-e7954c3f251aabbf95d099159709c8c66dfedc44.tar
gsoc2013-evolution-e7954c3f251aabbf95d099159709c8c66dfedc44.tar.gz
gsoc2013-evolution-e7954c3f251aabbf95d099159709c8c66dfedc44.tar.bz2
gsoc2013-evolution-e7954c3f251aabbf95d099159709c8c66dfedc44.tar.lz
gsoc2013-evolution-e7954c3f251aabbf95d099159709c8c66dfedc44.tar.xz
gsoc2013-evolution-e7954c3f251aabbf95d099159709c8c66dfedc44.tar.zst
gsoc2013-evolution-e7954c3f251aabbf95d099159709c8c66dfedc44.zip
Coding style and whitespace cleanups.
Diffstat (limited to 'mail/em-folder-utils.c')
-rw-r--r--mail/em-folder-utils.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/mail/em-folder-utils.c b/mail/em-folder-utils.c
index 589729bcca..63931fba6d 100644
--- a/mail/em-folder-utils.c
+++ b/mail/em-folder-utils.c
@@ -170,9 +170,13 @@ emft_copy_folders__exec (struct _EMCopyFolders *m,
pending = g_list_append (pending, info->child);
if (m->tobase[0])
- g_string_printf (toname, "%s/%s", m->tobase, info->full_name + fromlen);
+ g_string_printf (
+ toname, "%s/%s", m->tobase,
+ info->full_name + fromlen);
else
- g_string_printf (toname, "%s", info->full_name + fromlen);
+ g_string_printf (
+ toname, "%s",
+ info->full_name + fromlen);
d(printf ("Copying from '%s' to '%s'\n", info->full_name, toname->str));
@@ -516,7 +520,7 @@ new_folder_created_cb (CamelStore *store,
data = g_object_get_data (
G_OBJECT (context->folder_tree), "select");
expand_only = GPOINTER_TO_INT (data) ? TRUE : FALSE;
-
+
em_folder_tree_set_selected (
context->folder_tree,
context->folder_uri, expand_only);