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 | |
parent | 380b7d238f85e2560a075bb0b407b8f902bbc30a (diff) | |
download | gsoc2013-evolution-06091a255ef2fdbdf44629078b93c11b02e1aa31.tar gsoc2013-evolution-06091a255ef2fdbdf44629078b93c11b02e1aa31.tar.gz gsoc2013-evolution-06091a255ef2fdbdf44629078b93c11b02e1aa31.tar.bz2 gsoc2013-evolution-06091a255ef2fdbdf44629078b93c11b02e1aa31.tar.lz gsoc2013-evolution-06091a255ef2fdbdf44629078b93c11b02e1aa31.tar.xz 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
-rw-r--r-- | calendar/ChangeLog | 6 | ||||
-rw-r--r-- | calendar/gui/dialogs/cal-attachment-bar.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index e2b09f31f6..8d7b806044 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,9 @@ +2005-01-12 Harish Krishnaswamy <kharish@novell.com> + + * gui/dialogs/cal-attachment-bar.c: + (cal_attachment_bar_set_attachment_list): + reverting the offset 'hyphen' fix - not required anymore. + 2005-01-10 Rodrigo Moya <rodrigo@novell.com> * gui/e-day-view.c (e_day_view_on_editing_stopped): remove the 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); } } |