diff options
author | Jon Trowbridge <trow@ximian.com> | 2001-09-18 10:31:05 +0800 |
---|---|---|
committer | Jon Trowbridge <trow@src.gnome.org> | 2001-09-18 10:31:05 +0800 |
commit | d448b80bd6869bc238fedf21dd62b7148da970bb (patch) | |
tree | ea1d2467b41b7f43dcd12972052b1a67e7172d18 /addressbook/backend | |
parent | 2a2a86d8d44185ab67a8871f3b9d3356ce1e6e4d (diff) | |
download | gsoc2013-evolution-d448b80bd6869bc238fedf21dd62b7148da970bb.tar gsoc2013-evolution-d448b80bd6869bc238fedf21dd62b7148da970bb.tar.gz gsoc2013-evolution-d448b80bd6869bc238fedf21dd62b7148da970bb.tar.bz2 gsoc2013-evolution-d448b80bd6869bc238fedf21dd62b7148da970bb.tar.lz gsoc2013-evolution-d448b80bd6869bc238fedf21dd62b7148da970bb.tar.xz gsoc2013-evolution-d448b80bd6869bc238fedf21dd62b7148da970bb.tar.zst gsoc2013-evolution-d448b80bd6869bc238fedf21dd62b7148da970bb.zip |
We want to assume that a destination that comes from a card is
2001-09-17 Jon Trowbridge <trow@ximian.com>
* backend/ebook/e-destination.c (e_destination_is_valid): We want
to assume that a destination that comes from a card is
automatically valid, but the right way to check that is by calling
e_destination_from_card, not by checking if dest->priv->card !=
NULL. (Fixed bug #10017)
svn path=/trunk/; revision=12930
Diffstat (limited to 'addressbook/backend')
-rw-r--r-- | addressbook/backend/ebook/e-destination.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addressbook/backend/ebook/e-destination.c b/addressbook/backend/ebook/e-destination.c index e906cd8bed..f5564f37ae 100644 --- a/addressbook/backend/ebook/e-destination.c +++ b/addressbook/backend/ebook/e-destination.c @@ -331,7 +331,7 @@ e_destination_is_valid (const EDestination *dest) g_return_val_if_fail (E_IS_DESTINATION (dest), FALSE); - if (dest->priv->card != NULL) + if (e_destination_from_card (dest)) return TRUE; email = e_destination_get_email (dest); |