From 16829497fd3a11bae35aaa440ee18ede4961ceb9 Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Sat, 2 Sep 2000 01:55:45 +0000 Subject: Added calendar/conduits/Makefile, calendar/conduits/calendar/Makefile and 2000-09-02 Christopher James Lahey * configure.in: Added calendar/conduits/Makefile, calendar/conduits/calendar/Makefile and calendar/conduits/todo/Makefile to the list of makefiles to output. From calendar/ChangeLog: 2000-09-02 Christopher James Lahey * conduits/calendar/calendar-conduit.c, conduits/todo/todo-conduit.c, gui/e-week-view.c, gui/gnome-cal.c: Fixed some warnings. From mail/ChangeLog: 2000-09-01 Christopher James Lahey * folder-browser.c: Removed a warning. svn path=/trunk/; revision=5179 --- ChangeLog | 7 +++++++ calendar/ChangeLog | 6 ++++++ calendar/conduits/calendar/calendar-conduit.c | 8 +++++++- calendar/conduits/todo/todo-conduit.c | 2 +- calendar/gui/e-week-view.c | 2 +- calendar/gui/gnome-cal.c | 2 ++ configure.in | 3 +++ mail/ChangeLog | 4 ++++ mail/folder-browser.c | 2 ++ 9 files changed, 33 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index bc7c40626f..f4e97a5b38 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2000-09-02 Christopher James Lahey + + * configure.in: Added calendar/conduits/Makefile, + calendar/conduits/calendar/Makefile and + calendar/conduits/todo/Makefile to the list of makefiles to + output. + 2000-09-01 Jeffrey Stedfast * configure.in: Add default_user/local/Sentbox/Makefile to the diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 1a58d4ce77..197410c3a2 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,9 @@ +2000-09-02 Christopher James Lahey + + * conduits/calendar/calendar-conduit.c, + conduits/todo/todo-conduit.c, gui/e-week-view.c, gui/gnome-cal.c: + Fixed some warnings. + 2000-09-01 Federico Mena Quintero * gui/gnome-cal.c (gnome_calendar_new): Use diff --git a/calendar/conduits/calendar/calendar-conduit.c b/calendar/conduits/calendar/calendar-conduit.c index 7baf099060..e0a83e7d83 100644 --- a/calendar/conduits/calendar/calendar-conduit.c +++ b/calendar/conduits/calendar/calendar-conduit.c @@ -504,7 +504,9 @@ ical_from_remote_record(GnomePilotConduitStandardAbs *conduit, } */ +#ifndef NO_WARNINGS #warning "finish alarms here" +#endif #if 0 /* * Alarm @@ -531,7 +533,9 @@ ical_from_remote_record(GnomePilotConduitStandardAbs *conduit, } #endif /* 0 */ +#ifndef NO_WARNINGS #warning "finish recurrence here" +#endif #if 0 /* * Recurrence @@ -1064,7 +1068,7 @@ set_status (GnomePilotConduitStandardAbs *conduit, GCalConduitContext *ctxt) { gboolean success; - iCalPilotState new_state; + iCalPilotState new_state = ICAL_PILOT_SYNC_NONE; printf ("set_status: %s status is now '%s'\n", print_local (local), @@ -1210,7 +1214,9 @@ transmit (GnomePilotConduitStandardAbs *conduit, local->a->end = *localtime (&dtend_time_t); } +#ifndef NO_WARNINGS #warning "finish alarm and recurrence here" +#endif #if 0 /* set the Audio Alarm parameters */ if(local->ical->aalarm.enabled) { diff --git a/calendar/conduits/todo/todo-conduit.c b/calendar/conduits/todo/todo-conduit.c index 3d85dbfa06..3ba9506854 100644 --- a/calendar/conduits/todo/todo-conduit.c +++ b/calendar/conduits/todo/todo-conduit.c @@ -982,7 +982,7 @@ set_status (GnomePilotConduitStandardAbs *conduit, GCalConduitContext *ctxt) { gboolean success; - iCalPilotState new_state; + iCalPilotState new_state = ICAL_PILOT_SYNC_NONE; LOG ("set_status: %s status is now '%s'\n", print_local (local), diff --git a/calendar/gui/e-week-view.c b/calendar/gui/e-week-view.c index a3a3e684d8..5c4bbcc312 100644 --- a/calendar/gui/e-week-view.c +++ b/calendar/gui/e-week-view.c @@ -1103,7 +1103,7 @@ e_week_view_set_first_day_shown (EWeekView *week_view, GDate base_date; gint day_offset, num_days; gboolean update_adjustment_value = FALSE; - guint32 old_selection_start_julian, old_selection_end_julian; + guint32 old_selection_start_julian = 0, old_selection_end_julian = 0; struct tm start_tm; time_t start_time; diff --git a/calendar/gui/gnome-cal.c b/calendar/gui/gnome-cal.c index ec70e56cc0..6a8dae19ce 100644 --- a/calendar/gui/gnome-cal.c +++ b/calendar/gui/gnome-cal.c @@ -1387,6 +1387,7 @@ gnome_calendar_set_selected_time_range (GnomeCalendar *gcal, gnome_calendar_update_date_navigator (gcal); } +#ifndef NO_WARNINGS /* Callback used when an event editor finishes editing an object */ static void released_event_object_cb (EventEditor *ee, const char *uid, gpointer data) @@ -1406,6 +1407,7 @@ released_event_object_cb (EventEditor *ee, const char *uid, gpointer data) g_hash_table_remove (gcal->object_editor_hash, orig_uid); g_free (orig_uid); } +#endif /* Callback used when an event editor dialog is closed */ struct editor_closure diff --git a/configure.in b/configure.in index 8afe5b164c..c56a600e02 100644 --- a/configure.in +++ b/configure.in @@ -586,6 +586,9 @@ calendar/cal-client/Makefile calendar/pcs/Makefile calendar/gui/Makefile calendar/gui/dialogs/Makefile +calendar/conduits/Makefile +calendar/conduits/calendar/Makefile +calendar/conduits/todo/Makefile filter/Makefile notes/Makefile wombat/Makefile diff --git a/mail/ChangeLog b/mail/ChangeLog index 546389d5ca..f1d01d5b58 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,7 @@ +2000-09-01 Christopher James Lahey + + * folder-browser.c: Removed a warning. + 2000-09-01 Jeffrey Stedfast * mail-callbacks.c (compose_msg): Attach a callback to the diff --git a/mail/folder-browser.c b/mail/folder-browser.c index 65ca9cf114..44f33a22cf 100644 --- a/mail/folder-browser.c +++ b/mail/folder-browser.c @@ -448,7 +448,9 @@ folder_browser_new (Evolution_Shell shell) folder_browser->serial = serial++; folder_browser->shell = shell; +#ifndef NO_WARNINGS #warning "is this a circular reference???" +#endif CORBA_exception_init (&ev); Bonobo_Unknown_ref (shell, &ev); -- cgit v1.2.3