diff options
author | Dan Winship <danw@src.gnome.org> | 2002-09-23 23:25:44 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2002-09-23 23:25:44 +0800 |
commit | 9855ee6ebfbc99dc84087c521d520c4c7fc62438 (patch) | |
tree | 0b4bbaabeda47b852d096a97a5944c36f0d6dd70 /calendar/gui/e-meeting-model.c | |
parent | b62d7e660eb743b06338441cb8a1827dd8d8102b (diff) | |
download | gsoc2013-evolution-9855ee6ebfbc99dc84087c521d520c4c7fc62438.tar.gz gsoc2013-evolution-9855ee6ebfbc99dc84087c521d520c4c7fc62438.tar.zst gsoc2013-evolution-9855ee6ebfbc99dc84087c521d520c4c7fc62438.zip |
fix non-ANSI switch statements.
* 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.
svn path=/trunk/; revision=18169
Diffstat (limited to 'calendar/gui/e-meeting-model.c')
-rw-r--r-- | calendar/gui/e-meeting-model.c | 3 |
1 files changed, 3 insertions, 0 deletions
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) { |