diff options
author | JP Rosevear <jpr@ximian.com> | 2001-10-23 00:47:54 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2001-10-23 00:47:54 +0800 |
commit | 5e9d81e541449d811574d64c9f0e84e0cf24b536 (patch) | |
tree | 019c82df311027547629e1464b70b7f75e6d9e5e /calendar/conduits | |
parent | c4b424decd46e0487272a7e6c18ed6454418de0f (diff) | |
download | gsoc2013-evolution-5e9d81e541449d811574d64c9f0e84e0cf24b536.tar gsoc2013-evolution-5e9d81e541449d811574d64c9f0e84e0cf24b536.tar.gz gsoc2013-evolution-5e9d81e541449d811574d64c9f0e84e0cf24b536.tar.bz2 gsoc2013-evolution-5e9d81e541449d811574d64c9f0e84e0cf24b536.tar.lz gsoc2013-evolution-5e9d81e541449d811574d64c9f0e84e0cf24b536.tar.xz gsoc2013-evolution-5e9d81e541449d811574d64c9f0e84e0cf24b536.tar.zst gsoc2013-evolution-5e9d81e541449d811574d64c9f0e84e0cf24b536.zip |
write out the correct time in the control
2001-10-22 JP Rosevear <jpr@ximian.com>
* gui/e-itip-control.c (set_date_label): write out the correct
time in the control
* pcs/cal.c (build_fb_seq): utility function to build sequences of
f/b data
(impl_Cal_get_free_busy): use above so we never return a NULL
* conduits/calendar/calendar-conduit-config.h
(calconduit_save_configuration): fix c/p error
(calconduit_load_configuration): ditto
svn path=/trunk/; revision=13876
Diffstat (limited to 'calendar/conduits')
-rw-r--r-- | calendar/conduits/calendar/calendar-conduit-config.h | 4 | ||||
-rw-r--r-- | calendar/conduits/calendar/calendar-conduit.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/calendar/conduits/calendar/calendar-conduit-config.h b/calendar/conduits/calendar/calendar-conduit-config.h index e624552cda..e557f7d87f 100644 --- a/calendar/conduits/calendar/calendar-conduit-config.h +++ b/calendar/conduits/calendar/calendar-conduit-config.h @@ -43,7 +43,7 @@ static void calconduit_load_configuration (ECalConduitCfg **c, guint32 pilot_id) { gchar prefix[256]; - g_snprintf (prefix, 255, "/gnome-pilot.d/e-todo-conduit/Pilot_%u/", + g_snprintf (prefix, 255, "/gnome-pilot.d/e-calendar-conduit/Pilot_%u/", pilot_id); *c = g_new0 (ECalConduitCfg,1); @@ -67,7 +67,7 @@ calconduit_save_configuration (ECalConduitCfg *c) { gchar prefix[256]; - g_snprintf (prefix, 255, "/gnome-pilot.d/e-todo-conduit/Pilot_%u/", + g_snprintf (prefix, 255, "/gnome-pilot.d/e-calendar-conduit/Pilot_%u/", c->pilot_id); gnome_config_push_prefix (prefix); diff --git a/calendar/conduits/calendar/calendar-conduit.h b/calendar/conduits/calendar/calendar-conduit.h index 244a022c00..886588c978 100644 --- a/calendar/conduits/calendar/calendar-conduit.h +++ b/calendar/conduits/calendar/calendar-conduit.h @@ -48,7 +48,7 @@ struct _ECalLocalRecord { /* The corresponding Comp object */ CalComponent *comp; - /* pilot-link todo structure */ + /* pilot-link appointment structure */ struct Appointment *appt; }; |