~ubuntu-branches/ubuntu/saucy/evolution-data-server/saucy

« back to all changes in this revision

Viewing changes to tests/libebook/test-stress-bookviews.c

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2012-10-08 12:58:16 UTC
  • mfrom: (181.1.7 quantal)
  • Revision ID: package-import@ubuntu.com-20121008125816-i3n76e8c0m64e7xp
Tags: 3.6.0-0ubuntu2
* Fix LP: #1038047 part 1 - Don't abort in e_source_registry_new* when a
  problem occurs connecting to the Dbus service
  - add debian/patches/dont-abort-in-e_source_registry_new.patch
  - update debian/patches/series
* Fix LP: #1038047 part 2 - libedataserver depends on
  evolution-data-server-common to ensure that the GSettings schemas are
  present
  - update debian/control

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
{
9
9
        GList *emails, *e;
10
10
 
11
 
        printf ("Contact: %s\n", (gchar *)e_contact_get_const (contact, E_CONTACT_FILE_AS));
12
 
        printf ("UID: %s\n", (gchar *)e_contact_get_const (contact, E_CONTACT_UID));
 
11
        printf ("Contact: %s\n", (gchar *) e_contact_get_const (contact, E_CONTACT_FILE_AS));
 
12
        printf ("UID: %s\n", (gchar *) e_contact_get_const (contact, E_CONTACT_UID));
13
13
        printf ("Email addresses:\n");
14
14
 
15
15
        emails = e_contact_get (contact, E_CONTACT_EMAIL);
16
16
        for (e = emails; e; e = e->next) {
17
 
                printf ("\t%s\n",  (gchar *)e->data);
 
17
                printf ("\t%s\n",  (gchar *) e->data);
18
18
        }
19
19
        g_list_foreach (emails, (GFunc) g_free, NULL);
20
20
        g_list_free (emails);
40
40
  GList *l;
41
41
 
42
42
  for (l = (GList *) ids; l; l = l->next) {
43
 
    printf ("Removed contact: %s\n", (gchar *)l->data);
 
43
    printf ("Removed contact: %s\n", (gchar *) l->data);
44
44
  }
45
45
}
46
46