diff options
Diffstat (limited to 'em-format/e-mail-part-attachment-bar.c')
-rw-r--r-- | em-format/e-mail-part-attachment-bar.c | 8 |
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); } |