diff options
Diffstat (limited to 'addressbook/printing')
-rw-r--r-- | addressbook/printing/e-contact-print.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/addressbook/printing/e-contact-print.c b/addressbook/printing/e-contact-print.c index 39094d18a3..3b2dde2c18 100644 --- a/addressbook/printing/e-contact-print.c +++ b/addressbook/printing/e-contact-print.c @@ -41,7 +41,6 @@ #include <libebook/e-book-async.h> #include <libebook/e-contact.h> #include <gal/util/e-util.h> -#include <addressbook/util/eab-destination.h> #define SCALE 5 #define HYPHEN_PIXELS 20 @@ -475,16 +474,6 @@ e_contact_print_contact (EContact *contact, EContactPrintContext *ctxt) char *string; string = e_contact_get(contact, field); - if (string && !strncmp (string, "<?xml", 4)) { - EABDestination *dest = eab_destination_import (string); - if (dest != NULL) { - gchar *new_string = g_strdup (eab_destination_get_address (dest)); - g_free (string); - string = new_string; - g_object_unref (dest); - } - } - if (string && *string) { double xoff = 0; e_contact_output(ctxt->pc, ctxt->style->body_font, ctxt->x + xoff, ctxt->y, -1, e_contact_pretty_name (field)); |