diff options
author | Hans Petter Jansson <hpj@ximian.com> | 2004-02-27 05:01:41 +0800 |
---|---|---|
committer | Hans Petter <hansp@src.gnome.org> | 2004-02-27 05:01:41 +0800 |
commit | 9a4ee04a76f07a0183582b377260b9c37551a0ff (patch) | |
tree | f26e533f3dabb5bf28d76e7b23954a6538aa9276 /addressbook/util | |
parent | bac1a59d59bb0326bb8b634bbf6ec973b20efd16 (diff) | |
download | gsoc2013-evolution-9a4ee04a76f07a0183582b377260b9c37551a0ff.tar.gz gsoc2013-evolution-9a4ee04a76f07a0183582b377260b9c37551a0ff.tar.zst gsoc2013-evolution-9a4ee04a76f07a0183582b377260b9c37551a0ff.zip |
Move unused variable declaration inside notyet conditional.
2004-02-26 Hans Petter Jansson <hpj@ximian.com>
* util/eab-destination.c (name_and_email_cb): Move unused variable
declaration inside notyet conditional.
* printing/e-contact-print.c: Include gal/util/e-util.h
* gui/merging/eab-contact-compare.c (eab_contact_locate_match): Cast
callback to an EBookCallback.
(eab_contact_locate_match_full): Ditto.
* gui/contact-editor/e-contact-quick-add.c (quick_add_set_name):
Remove unused variable and cast 3rd arg to e_contact_set () (perhaps
this should take a gconstpointer?).
* gui/contact-editor/e-contact-editor-im.c (setup_service_optmenu):
Remove unused variable.
* gui/component/select-names/e-select-names.c (e_select_names_init):
Cast the vbox to a GtkBox.
* gui/component/addressbook-config.c (dialog_to_source): Correctly cast
the spin button to a GtkSpinButton, not a GtkEntry.
* gui/component/addressbook-component.c (load_primary_selection):
Remove unused variable.
svn path=/trunk/; revision=24898
Diffstat (limited to 'addressbook/util')
-rw-r--r-- | addressbook/util/eab-destination.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/addressbook/util/eab-destination.c b/addressbook/util/eab-destination.c index 020a9a5e09..4ab1a16678 100644 --- a/addressbook/util/eab-destination.c +++ b/addressbook/util/eab-destination.c @@ -919,10 +919,10 @@ name_and_email_cb (EBook *book, EBookStatus status, GList *contacts, gpointer cl if (status == E_BOOK_ERROR_OK && g_list_length ((GList *) contacts) == 1) { EContact *contact = E_CONTACT (contacts->data); - const char *email = eab_destination_get_email (dest); int email_num = 0; - #if notyet + const char *email = eab_destination_get_email (dest); + if (eab_destination_is_valid (dest) && email && *email) { email_num = e_contact_email_find_number (contact, eab_destination_get_email (dest)); } |