aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/backend/ebook
diff options
context:
space:
mode:
Diffstat (limited to 'addressbook/backend/ebook')
-rw-r--r--addressbook/backend/ebook/e-destination.c4
-rw-r--r--addressbook/backend/ebook/e-destination.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/addressbook/backend/ebook/e-destination.c b/addressbook/backend/ebook/e-destination.c
index e836922ba3..9b4fbe681b 100644
--- a/addressbook/backend/ebook/e-destination.c
+++ b/addressbook/backend/ebook/e-destination.c
@@ -189,7 +189,7 @@ e_destination_clear (EDestination *dest)
}
gboolean
-e_destination_is_empty (EDestination *dest)
+e_destination_is_empty (const EDestination *dest)
{
struct _EDestinationPrivate *p;
g_return_val_if_fail (dest && E_IS_DESTINATION (dest), TRUE);
@@ -405,7 +405,7 @@ e_destination_get_name (const EDestination *dest)
if (priv->name == NULL || *priv->name == '\0') {
g_free (priv->name);
- priv->name = e_destination_get_email (dest);
+ priv->name = g_strdup (e_destination_get_email (dest));
}
}
diff --git a/addressbook/backend/ebook/e-destination.h b/addressbook/backend/ebook/e-destination.h
index c53f255436..fc46a20538 100644
--- a/addressbook/backend/ebook/e-destination.h
+++ b/addressbook/backend/ebook/e-destination.h
@@ -63,7 +63,7 @@ EDestination *e_destination_new (void);
EDestination *e_destination_copy (const EDestination *);
void e_destination_clear (EDestination *);
-gboolean e_destination_is_empty (EDestination *);
+gboolean e_destination_is_empty (const EDestination *);
void e_destination_set_card (EDestination *, ECard *card, gint email_num);
void e_destination_set_card_uri (EDestination *, const gchar *uri, gint email_num);