From 2b46283efc6ca1cd1dee7e63128378022bb862ac Mon Sep 17 00:00:00 2001 From: Chris Toshok Date: Thu, 26 Feb 2004 17:51:26 +0000 Subject: fix checks for locations. 2004-02-26 Chris Toshok * gui/contact-editor/e-contact-editor.c (edit_im_clicked): fix checks for locations. svn path=/trunk/; revision=24888 --- addressbook/gui/contact-editor/e-contact-editor.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'addressbook/gui/contact-editor/e-contact-editor.c') diff --git a/addressbook/gui/contact-editor/e-contact-editor.c b/addressbook/gui/contact-editor/e-contact-editor.c index 420c5aa6ee..8a7c92e371 100644 --- a/addressbook/gui/contact-editor/e-contact-editor.c +++ b/addressbook/gui/contact-editor/e-contact-editor.c @@ -407,10 +407,9 @@ edit_im_clicked(GtkWidget *widget, EContactEditor *editor) NULL); if (service == old_service && - (location == old_location || - (location != NULL && old_location == NULL) || - (location == NULL && old_location != NULL) || - !strcmp(old_location, location)) && + ((!location && !old_location) || + (location && old_location && + !strcmp(old_location, location))) && !strcmp(screenname, old_screenname)) { gtk_widget_destroy(GTK_WIDGET(dialog)); @@ -426,7 +425,8 @@ edit_im_clicked(GtkWidget *widget, EContactEditor *editor) if (!found && !strcmp(e_vcard_attribute_get_value (attr), old_screenname) - && e_vcard_attribute_has_type (attr, old_location)) { + && ((old_location && e_vcard_attribute_has_type (attr, old_location)) + || (!old_location && !e_vcard_attribute_has_type (attr, "HOME") && !e_vcard_attribute_has_type (attr, "WORK")))) { e_vcard_attribute_free (attr); found = TRUE; } -- cgit v1.2.3