diff options
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 6 | ||||
-rw-r--r-- | addressbook/conduit/address-conduit.c | 5 |
2 files changed, 7 insertions, 4 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 373a5aa225..ca42a45e36 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,9 @@ +2001-06-18 Eskil Heyn Olsen <eskil@eskil.dk> + + * conduit/address-conduit.c: (check_for_slow_setting), + (conduit_get_gpilot_conduit): + Tweaked for some gnome-pilot api changes + 2001-06-15 Chris Toshok <toshok@ximian.com> * backend/pas/pas-backend-ldap.c (search_for_dn): implement this diff --git a/addressbook/conduit/address-conduit.c b/addressbook/conduit/address-conduit.c index 428584b9c4..26a09cb86c 100644 --- a/addressbook/conduit/address-conduit.c +++ b/addressbook/conduit/address-conduit.c @@ -545,7 +545,7 @@ check_for_slow_setting (GnomePilotConduit *c, EAddrConduitContext *ctxt) GnomePilotConduitStandard *conduit; LOG (" doing slow sync\n"); conduit = GNOME_PILOT_CONDUIT_STANDARD (c); - gnome_pilot_conduit_standard_set_slow (conduit); + gnome_pilot_conduit_standard_set_slow (conduit, TRUE); } else { LOG (" doing fast sync\n"); } @@ -1097,9 +1097,6 @@ conduit_get_gpilot_conduit (guint32 pilot_id) retval = gnome_pilot_conduit_sync_abs_new ("AddressDB", 0x61646472); g_assert (retval != NULL); - gnome_pilot_conduit_construct (GNOME_PILOT_CONDUIT (retval), - "e_addr_conduit"); - e_addr_context_new (&ctxt, pilot_id); gtk_object_set_data (GTK_OBJECT (retval), "addrconduit_context", ctxt); |