[nautilus-sendto] evolution: Fix double assignment
- From: Bastien Nocera <hadess src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [nautilus-sendto] evolution: Fix double assignment
- Date: Wed, 11 Apr 2012 10:56:18 +0000 (UTC)
commit 3eb262a424e797730ec3393a9489e0e6eafcc8b5
Author: Milan Crha <mcrha redhat com>
Date: Wed Apr 11 11:51:58 2012 +0100
evolution: Fix double assignment
src/plugins/evolution/e-contact-entry.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/plugins/evolution/e-contact-entry.c b/src/plugins/evolution/e-contact-entry.c
index 35557ab..672d26a 100644
--- a/src/plugins/evolution/e-contact-entry.c
+++ b/src/plugins/evolution/e-contact-entry.c
@@ -227,7 +227,7 @@ e_contact_entry_display_func (EContact *contact)
emails = e_contact_get (contact, E_CONTACT_EMAIL);
for (l = emails; l != NULL; l = l->next) {
item = g_new0 (EContactEntyItem, 1);
- item->identifier = item->identifier = g_strdup (l->data);
+ item->identifier = g_strdup (l->data);
item->display_string = g_strdup_printf ("%s <%s>", (char*)e_contact_get_const (contact, E_CONTACT_NAME_OR_ORG), item->identifier);
items = g_list_prepend (items, item);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]