From cae22334fa6bc395ccc421b09e0af94c89297c41 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Fri, 15 Jan 2010 10:16:25 -0500 Subject: Remove dead assignments found by clang. --- plugins/itip-formatter/itip-formatter.c | 6 ++---- plugins/itip-formatter/itip-view.c | 3 +-- 2 files changed, 3 insertions(+), 6 deletions(-) (limited to 'plugins/itip-formatter') diff --git a/plugins/itip-formatter/itip-formatter.c b/plugins/itip-formatter/itip-formatter.c index 7f03570770..65f9b58b70 100644 --- a/plugins/itip-formatter/itip-formatter.c +++ b/plugins/itip-formatter/itip-formatter.c @@ -866,7 +866,6 @@ find_server (struct _itip_puri *pitip, ECalComponent *comp) } for (; l != NULL; l = l->next) { - ECal *ecal; source = l->data; if (!fd) { @@ -896,7 +895,7 @@ find_server (struct _itip_puri *pitip, ECalComponent *comp) if (current_source == source) pitip->current_ecal = start_calendar_server (pitip, source, pitip->type, find_cal_opened_cb, fd); else - ecal = start_calendar_server (pitip, source, pitip->type, find_cal_opened_cb, fd); + start_calendar_server (pitip, source, pitip->type, find_cal_opened_cb, fd); } @@ -2519,7 +2518,6 @@ puri_free (EMFormatPURI *puri) void format_itip (EPlugin *ep, EMFormatHookTarget *target) { - EMFormatHTMLPObject *pobj; GConfClient *gconf; gchar *classid; struct _itip_puri *puri; @@ -2535,7 +2533,7 @@ format_itip (EPlugin *ep, EMFormatHookTarget *target) puri = (struct _itip_puri *)em_format_add_puri(target->format, sizeof(struct _itip_puri), classid, target->part, itip_attachment_frame); - pobj = em_format_html_add_pobject ((EMFormatHTML *) target->format, sizeof (EMFormatHTMLPObject), classid, target->part, format_itip_object); + em_format_html_add_pobject ((EMFormatHTML *) target->format, sizeof (EMFormatHTMLPObject), classid, target->part, format_itip_object); gconf = gconf_client_get_default (); puri->delete_message = gconf_client_get_bool (gconf, GCONF_KEY_DELETE, NULL); diff --git a/plugins/itip-formatter/itip-view.c b/plugins/itip-formatter/itip-view.c index 9b240f484a..0440513329 100644 --- a/plugins/itip-formatter/itip-view.c +++ b/plugins/itip-formatter/itip-view.c @@ -517,14 +517,13 @@ static void set_journal_sender_text (ItipView *view) { ItipViewPrivate *priv; - const gchar *organizer, *attendee; + const gchar *organizer; gchar *sender = NULL; gchar *on_behalf_of = NULL; priv = view->priv; organizer = priv->organizer ? priv->organizer : _("An unknown person"); - attendee = priv->attendee ? priv->attendee : _("An unknown person"); /* The current account ID (i.e. the delegatee) is receiving a copy of the request/response. Here we ask the delegatee to respond/accept on behalf of the delegator. */ if (priv->organizer && priv->proxy) -- cgit v1.2.3