aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2002-09-23 23:25:44 +0800
committerDan Winship <danw@src.gnome.org>2002-09-23 23:25:44 +0800
commit9855ee6ebfbc99dc84087c521d520c4c7fc62438 (patch)
tree0b4bbaabeda47b852d096a97a5944c36f0d6dd70
parentb62d7e660eb743b06338441cb8a1827dd8d8102b (diff)
downloadgsoc2013-evolution-9855ee6ebfbc99dc84087c521d520c4c7fc62438.tar
gsoc2013-evolution-9855ee6ebfbc99dc84087c521d520c4c7fc62438.tar.gz
gsoc2013-evolution-9855ee6ebfbc99dc84087c521d520c4c7fc62438.tar.bz2
gsoc2013-evolution-9855ee6ebfbc99dc84087c521d520c4c7fc62438.tar.lz
gsoc2013-evolution-9855ee6ebfbc99dc84087c521d520c4c7fc62438.tar.xz
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
-rw-r--r--calendar/ChangeLog10
-rw-r--r--calendar/gui/e-meeting-model.c3
-rw-r--r--calendar/gui/itip-utils.c1
-rw-r--r--calendar/pcs/cal.c2
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;
}
}