diff options
author | Harish Krishnaswamy <kharish@src.gnome.org> | 2005-01-12 14:50:49 +0800 |
---|---|---|
committer | Harish Krishnaswamy <kharish@src.gnome.org> | 2005-01-12 14:50:49 +0800 |
commit | 06091a255ef2fdbdf44629078b93c11b02e1aa31 (patch) | |
tree | 8c11aa8162ae089193f8d419826aef5c878cbf9e /calendar/gui | |
parent | 380b7d238f85e2560a075bb0b407b8f902bbc30a (diff) | |
download | gsoc2013-evolution-06091a255ef2fdbdf44629078b93c11b02e1aa31.tar.gz gsoc2013-evolution-06091a255ef2fdbdf44629078b93c11b02e1aa31.tar.zst gsoc2013-evolution-06091a255ef2fdbdf44629078b93c11b02e1aa31.zip |
Reverted the previous fix to offset the hyphen while
forming the filename.
svn path=/trunk/; revision=28368
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/dialogs/cal-attachment-bar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/dialogs/cal-attachment-bar.c b/calendar/gui/dialogs/cal-attachment-bar.c index 4cf24e22f0..2dea375a87 100644 --- a/calendar/gui/dialogs/cal-attachment-bar.c +++ b/calendar/gui/dialogs/cal-attachment-bar.c @@ -871,7 +871,7 @@ cal_attachment_bar_set_attachment_list (CalAttachmentBar *bar, GSList *attach_li priv->num_attachments-1); camel_mime_part_set_filename (attach->body, attach_filename + strlen (priv->local_attachment_store)+ - strlen (priv->comp_uid) + 2); + strlen (priv->comp_uid) + 1); update (bar); } } |