diff options
author | JP Rosevear <jpr@ximian.com> | 2001-10-23 00:47:54 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2001-10-23 00:47:54 +0800 |
commit | 5e9d81e541449d811574d64c9f0e84e0cf24b536 (patch) | |
tree | 019c82df311027547629e1464b70b7f75e6d9e5e /calendar/gui | |
parent | c4b424decd46e0487272a7e6c18ed6454418de0f (diff) | |
download | gsoc2013-evolution-5e9d81e541449d811574d64c9f0e84e0cf24b536.tar.gz gsoc2013-evolution-5e9d81e541449d811574d64c9f0e84e0cf24b536.tar.zst gsoc2013-evolution-5e9d81e541449d811574d64c9f0e84e0cf24b536.zip |
write out the correct time in the control
2001-10-22 JP Rosevear <jpr@ximian.com>
* gui/e-itip-control.c (set_date_label): write out the correct
time in the control
* pcs/cal.c (build_fb_seq): utility function to build sequences of
f/b data
(impl_Cal_get_free_busy): use above so we never return a NULL
* conduits/calendar/calendar-conduit-config.h
(calconduit_save_configuration): fix c/p error
(calconduit_load_configuration): ditto
svn path=/trunk/; revision=13876
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/e-itip-control.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/e-itip-control.c b/calendar/gui/e-itip-control.c index 85fcfd4572..b85e113170 100644 --- a/calendar/gui/e-itip-control.c +++ b/calendar/gui/e-itip-control.c @@ -500,11 +500,11 @@ set_date_label (GtkHTML *html, GtkHTMLStream *html_stream, CalComponent *comp) write_label_piece (end, buffer, 1024, U_("Meeting ends: <b>"), "</b><br>"); break; case CAL_COMPONENT_FREEBUSY: - write_label_piece (start, buffer, 1024, U_("Free/Busy info ends: <b>"), + write_label_piece (end, buffer, 1024, U_("Free/Busy info ends: <b>"), "</b><br>"); break; default: - write_label_piece (start, buffer, 1024, U_("Ends: <b>"), "</b><br>"); + write_label_piece (end, buffer, 1024, U_("Ends: <b>"), "</b><br>"); } gtk_html_write (html, html_stream, buffer, strlen (buffer)); wrote = TRUE; |