diff options
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/e-itip-control.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/calendar/gui/e-itip-control.c b/calendar/gui/e-itip-control.c index 75be4d098d..4079204400 100644 --- a/calendar/gui/e-itip-control.c +++ b/calendar/gui/e-itip-control.c @@ -809,6 +809,7 @@ write_html (EItipControl *itip, const gchar *itip_desc, const gchar *itip_title, CalComponentOrganizer organizer; CalComponentAttendee *attendee; GSList *attendees, *l = NULL; + const char *string; gchar *html; const gchar *const_html; @@ -890,6 +891,12 @@ write_html (EItipControl *itip, const gchar *itip_desc, const gchar *itip_title, gtk_html_stream_printf (html_stream, "<b>%s</b> %s<br><br>", U_("Summary:"), text.value ? text.value : U_("<i>None</i>")); + /* Location */ + cal_component_get_location (priv->comp, &string); + if (string != NULL) + gtk_html_stream_printf (html_stream, "<b>%s</b> %s<br><br>", + U_("Location:"), string); + /* Status */ if (priv->method == ICAL_METHOD_REPLY) { GSList *alist; |