Skip to content
Snippets Groups Projects
Commit 54d9c5a0 authored by Emmanuel Milou's avatar Emmanuel Milou
Browse files

indent menus.c

parent fd7b1329
No related branches found
No related tags found
No related merge requests found
......@@ -208,6 +208,9 @@ view_finish (EBookView *book_view, Handler_And_Data *had)
static void
view_contacts_added_cb (EBookView *book_view, GList *contacts, gpointer user_data)
{
GdkPixbuf *photo;
Handler_And_Data *had = (Handler_And_Data *) user_data;
if (had->max_results_remaining <= 0) {
e_book_view_stop (book_view);
......@@ -226,7 +229,8 @@ view_contacts_added_cb (EBookView *book_view, GList *contacts, gpointer user_dat
hit = g_new (Hit, 1);
/* Get the photo contact */
hit->photo = pixbuf_from_contact (contact);
photo = pixbuf_from_contact (contact);
hit->photo = photo;
/* Get business phone information */
fetch_information_from_contact (contact, E_CONTACT_PHONE_BUSINESS, &number);
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment