aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEskil Heyn Olsen <eskil@src.gnome.org>2001-06-19 10:14:34 +0800
committerEskil Heyn Olsen <eskil@src.gnome.org>2001-06-19 10:14:34 +0800
commit15d3afd9d6efcc62264d8de14f2272b41c1f6891 (patch)
tree4cbd9ed3f569564de0801f030bf7dcde5b35de36
parent26e2b46cf03b396eab403c740c81646811ccb5d9 (diff)
downloadgsoc2013-evolution-15d3afd9d6efcc62264d8de14f2272b41c1f6891.tar
gsoc2013-evolution-15d3afd9d6efcc62264d8de14f2272b41c1f6891.tar.gz
gsoc2013-evolution-15d3afd9d6efcc62264d8de14f2272b41c1f6891.tar.bz2
gsoc2013-evolution-15d3afd9d6efcc62264d8de14f2272b41c1f6891.tar.lz
gsoc2013-evolution-15d3afd9d6efcc62264d8de14f2272b41c1f6891.tar.xz
gsoc2013-evolution-15d3afd9d6efcc62264d8de14f2272b41c1f6891.tar.zst
gsoc2013-evolution-15d3afd9d6efcc62264d8de14f2272b41c1f6891.zip
tweaked for some gnome-pilot api changes
svn path=/trunk/; revision=10284
-rw-r--r--addressbook/ChangeLog6
-rw-r--r--addressbook/conduit/address-conduit.c5
-rw-r--r--calendar/ChangeLog8
-rw-r--r--calendar/conduits/calendar/calendar-conduit.c6
-rw-r--r--calendar/conduits/todo/todo-conduit.c5
-rw-r--r--po/ChangeLog8
6 files changed, 25 insertions, 13 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);
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 07e0e6cfe0..eb6b62fd5b 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,11 @@
+2001-06-18 Eskil Heyn Olsen <eskil@eskil.dk>
+
+ * conduits/calendar/calendar-conduit.c: (comp_from_remote_record),
+ (check_for_slow_setting), (conduit_get_gpilot_conduit):
+ * conduits/todo/todo-conduit.c: (check_for_slow_setting),
+ (conduit_get_gpilot_conduit):
+ Tweaked for some gnome-pilot api changes
+
2001-06-15 Rodrigo Moya <rodrigo@ximian.com>
* gui/e-day-view.c (selection_received): generate a new UID
diff --git a/calendar/conduits/calendar/calendar-conduit.c b/calendar/conduits/calendar/calendar-conduit.c
index 155813d65e..4ae0bec8a6 100644
--- a/calendar/conduits/calendar/calendar-conduit.c
+++ b/calendar/conduits/calendar/calendar-conduit.c
@@ -536,7 +536,6 @@ comp_from_remote_record (GnomePilotConduitSyncAbs *conduit,
int pos, i;
CalComponentText summary = {NULL, NULL};
CalComponentDateTime dt = {NULL, NULL};
- GList *alist, *l;
char *txt;
g_return_val_if_fail (remote != NULL, NULL);
@@ -700,7 +699,7 @@ check_for_slow_setting (GnomePilotConduit *c, ECalConduitContext *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");
}
@@ -1156,9 +1155,6 @@ conduit_get_gpilot_conduit (guint32 pilot_id)
retval = gnome_pilot_conduit_sync_abs_new ("DatebookDB", 0x64617465);
g_assert (retval != NULL);
- gnome_pilot_conduit_construct (GNOME_PILOT_CONDUIT (retval),
- "e_calendar_conduit");
-
ctxt = e_calendar_context_new (pilot_id);
gtk_object_set_data (GTK_OBJECT (retval), "calconduit_context", ctxt);
diff --git a/calendar/conduits/todo/todo-conduit.c b/calendar/conduits/todo/todo-conduit.c
index f812532616..05745706d2 100644
--- a/calendar/conduits/todo/todo-conduit.c
+++ b/calendar/conduits/todo/todo-conduit.c
@@ -514,7 +514,7 @@ check_for_slow_setting (GnomePilotConduit *c, EToDoConduitContext *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");
}
@@ -970,9 +970,6 @@ conduit_get_gpilot_conduit (guint32 pilot_id)
retval = gnome_pilot_conduit_sync_abs_new ("ToDoDB", 0x746F646F);
g_assert (retval != NULL);
- gnome_pilot_conduit_construct (GNOME_PILOT_CONDUIT (retval),
- "e_todo_conduit");
-
ctxt = e_todo_context_new (pilot_id);
gtk_object_set_data (GTK_OBJECT (retval), "todoconduit_context", ctxt);
diff --git a/po/ChangeLog b/po/ChangeLog
index 527eb21f5b..790d7e3864 100644
--- a/po/ChangeLog
+++ b/po/ChangeLog
@@ -1,3 +1,11 @@
+2001-06-18 gettextize <bug-gnu-utils@gnu.org>
+
+ * Makefile.in.in: Upgrade to gettext-0.10.37.
+
+2001-06-18 gettextize <bug-gnu-utils@gnu.org>
+
+ * Makefile.in.in: Upgrade to gettext-0.10.37.
+
2001-06-18 Zbigniew Chyla <chyla@gnome.pl>
* pl.po: Updated Polish translation.