diff options
-rw-r--r-- | calendar/ChangeLog | 10 | ||||
-rw-r--r-- | calendar/gui/e-meeting-model.c | 3 | ||||
-rw-r--r-- | calendar/gui/itip-utils.c | 1 | ||||
-rw-r--r-- | calendar/pcs/cal.c | 2 |
4 files changed, 16 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index fa7e540c70..04843e7913 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,13 @@ +2002-09-23 Dan Winship <danw@ximian.com> + + * pcs/cal.c (imple_Cal_update_objects, impl_Cal_remove_object): + fix non-ANSI switch statements. + + * gui/e-meeting-model.c (is_cell_editable, value_is_empty, + process_free_busy_comp): Likewise + + * gui/itip-utils.c (comp_compliant): Likewise. + 2002-09-23 Rodrigo Moya <rodrigo@ximian.com> * gui/main.c (launch_alarm_daemon): install an idle callback that will diff --git a/calendar/gui/e-meeting-model.c b/calendar/gui/e-meeting-model.c index f85fb04e01..19de8b147b 100644 --- a/calendar/gui/e-meeting-model.c +++ b/calendar/gui/e-meeting-model.c @@ -533,6 +533,7 @@ is_cell_editable (ETableModel *etm, int col, int row) return FALSE; default: + break; } return TRUE; @@ -594,6 +595,7 @@ value_is_empty (ETableModel *etm, int col, const void *val) else return FALSE; default: + ; } return TRUE; @@ -1303,6 +1305,7 @@ process_free_busy_comp (EMeetingAttendee *ia, break; default: + break; } if (busy_type != E_MEETING_FREE_BUSY_LAST) { diff --git a/calendar/gui/itip-utils.c b/calendar/gui/itip-utils.c index b75be1b484..c268589e03 100644 --- a/calendar/gui/itip-utils.c +++ b/calendar/gui/itip-utils.c @@ -777,6 +777,7 @@ comp_compliant (CalComponentItipMethod method, CalComponent *comp) clone = temp_clone; break; default: + break; } return clone; diff --git a/calendar/pcs/cal.c b/calendar/pcs/cal.c index 321a7c23db..a266977cbc 100644 --- a/calendar/pcs/cal.c +++ b/calendar/pcs/cal.c @@ -410,6 +410,7 @@ impl_Cal_update_objects (PortableServer_Servant servant, bonobo_exception_set (ev, ex_GNOME_Evolution_Calendar_Cal_PermissionDenied); break; default : + break; } } @@ -438,6 +439,7 @@ impl_Cal_remove_object (PortableServer_Servant servant, bonobo_exception_set (ev, ex_GNOME_Evolution_Calendar_Cal_PermissionDenied); break; default : + break; } } |