aboutsummaryrefslogtreecommitdiffstats
path: root/em-format/e-mail-part-attachment-bar.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2014-02-16 22:36:49 +0800
committerMatthew Barnes <mbarnes@redhat.com>2014-03-03 08:36:01 +0800
commitc53fbc0b8f3b98827d6816a627bdd4d467b84f74 (patch)
tree10eb8683b6d413f9ae6946dcaf303c29027a84ef /em-format/e-mail-part-attachment-bar.c
parent1e3d8b5c68754c377c54423f1fb9a322eb3ec9e8 (diff)
downloadgsoc2013-evolution-c53fbc0b8f3b98827d6816a627bdd4d467b84f74.tar
gsoc2013-evolution-c53fbc0b8f3b98827d6816a627bdd4d467b84f74.tar.gz
gsoc2013-evolution-c53fbc0b8f3b98827d6816a627bdd4d467b84f74.tar.bz2
gsoc2013-evolution-c53fbc0b8f3b98827d6816a627bdd4d467b84f74.tar.lz
gsoc2013-evolution-c53fbc0b8f3b98827d6816a627bdd4d467b84f74.tar.xz
gsoc2013-evolution-c53fbc0b8f3b98827d6816a627bdd4d467b84f74.tar.zst
gsoc2013-evolution-c53fbc0b8f3b98827d6816a627bdd4d467b84f74.zip
Miscellaneous cleanups.
Diffstat (limited to 'em-format/e-mail-part-attachment-bar.c')
-rw-r--r--em-format/e-mail-part-attachment-bar.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/em-format/e-mail-part-attachment-bar.c b/em-format/e-mail-part-attachment-bar.c
index 604581e9f6..6a0a07c378 100644
--- a/em-format/e-mail-part-attachment-bar.c
+++ b/em-format/e-mail-part-attachment-bar.c
@@ -82,10 +82,10 @@ e_mail_part_attachment_bar_get_store (EMailPartAttachmentBar *part)
GtkTreeModel *tree_model;
/* Create the store only on demand. The EMailParser runs in a dedicated
- thread, but the EAttachmentStore is a GtkWidget descendant, which should
- be manipulated only from the main/UI thread, thus postpone its creating
- until it's really needed, which might be during the EMailFormatter run,
- which runs from the main/UI thread. */
+ * thread, but the EAttachmentStore is a GtkWidget descendant, which should
+ * be manipulated only from the main/UI thread, thus postpone its creating
+ * until it's really needed, which might be during the EMailFormatter run,
+ * which runs from the main/UI thread. */
tree_model = e_attachment_store_new ();
part->priv->store = E_ATTACHMENT_STORE (tree_model);
}