aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEskil Heyn Olsen <eskil@src.gnome.org>1999-12-30 04:46:09 +0800
committerEskil Heyn Olsen <eskil@src.gnome.org>1999-12-30 04:46:09 +0800
commitd0606659a4bb08bdb635fea2b702856b2fabb480 (patch)
treee11346ebda69298ac994ccc5f8741bc5a25bbf31
parentf14fd12551bbc2b8207f678b560688fdd1a8172f (diff)
downloadgsoc2013-evolution-d0606659a4bb08bdb635fea2b702856b2fabb480.tar
gsoc2013-evolution-d0606659a4bb08bdb635fea2b702856b2fabb480.tar.gz
gsoc2013-evolution-d0606659a4bb08bdb635fea2b702856b2fabb480.tar.bz2
gsoc2013-evolution-d0606659a4bb08bdb635fea2b702856b2fabb480.tar.lz
gsoc2013-evolution-d0606659a4bb08bdb635fea2b702856b2fabb480.tar.xz
gsoc2013-evolution-d0606659a4bb08bdb635fea2b702856b2fabb480.tar.zst
gsoc2013-evolution-d0606659a4bb08bdb635fea2b702856b2fabb480.zip
Minor unmiportant changes, but my laptop is acting up, so I
need them somewhere safe, eg. cvs :) svn path=/trunk/; revision=1522
-rw-r--r--calendar/calendar-conduit.c11
-rw-r--r--calendar/conduits/calendar/calendar-conduit.c11
-rw-r--r--calendar/gui/calendar-conduit.c11
3 files changed, 24 insertions, 9 deletions
diff --git a/calendar/calendar-conduit.c b/calendar/calendar-conduit.c
index d7ec8083ae..cb7ca2b67a 100644
--- a/calendar/calendar-conduit.c
+++ b/calendar/calendar-conduit.c
@@ -43,7 +43,7 @@ GnomePilotConduit * conduit_get_gpilot_conduit (guint32);
void conduit_destroy_gpilot_conduit (GnomePilotConduit*);
void local_record_from_icalobject(GCalLocalRecord *local,iCalObject *obj);
-#define CONDUIT_VERSION "0.8.9"
+#define CONDUIT_VERSION "0.8.10p1"
#ifdef G_LOG_DOMAIN
#undef G_LOG_DOMAIN
#endif
@@ -597,7 +597,7 @@ check_for_slow_setting(GnomePilotConduit *c,
LOG (_("Calendar holds %d entries"),entry_number);
/* If the local base is empty, do a slow sync */
if ( entry_number <= 0) {
- gnome_pilot_conduit_standard_set_slow(c);
+ gnome_pilot_conduit_standard_set_slow(GNOME_PILOT_CONDUIT_STANDARD(c));
}
}
}
@@ -616,6 +616,8 @@ pre_sync(GnomePilotConduit *c,
if (start_calendar_server(GNOME_PILOT_CONDUIT_STANDARD_ABS(c),ctxt) != 0) {
WARN(_("Could not start gnomecal server"));
+ gnome_pilot_conduit_error(GNOME_PILOT_CONDUIT(c),
+ _("Could not start gnomecal server"));
return -1;
}
@@ -624,8 +626,11 @@ pre_sync(GnomePilotConduit *c,
/* load_records(c); */
buf = (unsigned char*)g_malloc(0xffff);
- if((l=dlp_ReadAppBlock(dbi->pilot_socket,dbi->db_handle,0,(unsigned char *)buf,0xffff))<0) {
+ if((l=dlp_ReadAppBlock(dbi->pilot_socket,dbi->db_handle,0,(unsigned char *)buf,0xffff)) < 0) {
WARN(_("Could not read pilot's DateBook application block"));
+ WARN("dlp_ReadAppBlock(...) = %d",l);
+ gnome_pilot_conduit_error(GNOME_PILOT_CONDUIT(c),
+ _("Could not read pilot's DateBook application block"));
return -1;
}
unpack_AppointmentAppInfo(&(ctxt->ai),buf,l);
diff --git a/calendar/conduits/calendar/calendar-conduit.c b/calendar/conduits/calendar/calendar-conduit.c
index d7ec8083ae..cb7ca2b67a 100644
--- a/calendar/conduits/calendar/calendar-conduit.c
+++ b/calendar/conduits/calendar/calendar-conduit.c
@@ -43,7 +43,7 @@ GnomePilotConduit * conduit_get_gpilot_conduit (guint32);
void conduit_destroy_gpilot_conduit (GnomePilotConduit*);
void local_record_from_icalobject(GCalLocalRecord *local,iCalObject *obj);
-#define CONDUIT_VERSION "0.8.9"
+#define CONDUIT_VERSION "0.8.10p1"
#ifdef G_LOG_DOMAIN
#undef G_LOG_DOMAIN
#endif
@@ -597,7 +597,7 @@ check_for_slow_setting(GnomePilotConduit *c,
LOG (_("Calendar holds %d entries"),entry_number);
/* If the local base is empty, do a slow sync */
if ( entry_number <= 0) {
- gnome_pilot_conduit_standard_set_slow(c);
+ gnome_pilot_conduit_standard_set_slow(GNOME_PILOT_CONDUIT_STANDARD(c));
}
}
}
@@ -616,6 +616,8 @@ pre_sync(GnomePilotConduit *c,
if (start_calendar_server(GNOME_PILOT_CONDUIT_STANDARD_ABS(c),ctxt) != 0) {
WARN(_("Could not start gnomecal server"));
+ gnome_pilot_conduit_error(GNOME_PILOT_CONDUIT(c),
+ _("Could not start gnomecal server"));
return -1;
}
@@ -624,8 +626,11 @@ pre_sync(GnomePilotConduit *c,
/* load_records(c); */
buf = (unsigned char*)g_malloc(0xffff);
- if((l=dlp_ReadAppBlock(dbi->pilot_socket,dbi->db_handle,0,(unsigned char *)buf,0xffff))<0) {
+ if((l=dlp_ReadAppBlock(dbi->pilot_socket,dbi->db_handle,0,(unsigned char *)buf,0xffff)) < 0) {
WARN(_("Could not read pilot's DateBook application block"));
+ WARN("dlp_ReadAppBlock(...) = %d",l);
+ gnome_pilot_conduit_error(GNOME_PILOT_CONDUIT(c),
+ _("Could not read pilot's DateBook application block"));
return -1;
}
unpack_AppointmentAppInfo(&(ctxt->ai),buf,l);
diff --git a/calendar/gui/calendar-conduit.c b/calendar/gui/calendar-conduit.c
index d7ec8083ae..cb7ca2b67a 100644
--- a/calendar/gui/calendar-conduit.c
+++ b/calendar/gui/calendar-conduit.c
@@ -43,7 +43,7 @@ GnomePilotConduit * conduit_get_gpilot_conduit (guint32);
void conduit_destroy_gpilot_conduit (GnomePilotConduit*);
void local_record_from_icalobject(GCalLocalRecord *local,iCalObject *obj);
-#define CONDUIT_VERSION "0.8.9"
+#define CONDUIT_VERSION "0.8.10p1"
#ifdef G_LOG_DOMAIN
#undef G_LOG_DOMAIN
#endif
@@ -597,7 +597,7 @@ check_for_slow_setting(GnomePilotConduit *c,
LOG (_("Calendar holds %d entries"),entry_number);
/* If the local base is empty, do a slow sync */
if ( entry_number <= 0) {
- gnome_pilot_conduit_standard_set_slow(c);
+ gnome_pilot_conduit_standard_set_slow(GNOME_PILOT_CONDUIT_STANDARD(c));
}
}
}
@@ -616,6 +616,8 @@ pre_sync(GnomePilotConduit *c,
if (start_calendar_server(GNOME_PILOT_CONDUIT_STANDARD_ABS(c),ctxt) != 0) {
WARN(_("Could not start gnomecal server"));
+ gnome_pilot_conduit_error(GNOME_PILOT_CONDUIT(c),
+ _("Could not start gnomecal server"));
return -1;
}
@@ -624,8 +626,11 @@ pre_sync(GnomePilotConduit *c,
/* load_records(c); */
buf = (unsigned char*)g_malloc(0xffff);
- if((l=dlp_ReadAppBlock(dbi->pilot_socket,dbi->db_handle,0,(unsigned char *)buf,0xffff))<0) {
+ if((l=dlp_ReadAppBlock(dbi->pilot_socket,dbi->db_handle,0,(unsigned char *)buf,0xffff)) < 0) {
WARN(_("Could not read pilot's DateBook application block"));
+ WARN("dlp_ReadAppBlock(...) = %d",l);
+ gnome_pilot_conduit_error(GNOME_PILOT_CONDUIT(c),
+ _("Could not read pilot's DateBook application block"));
return -1;
}
unpack_AppointmentAppInfo(&(ctxt->ai),buf,l);