aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/pcs
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 /calendar/pcs
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
Diffstat (limited to 'calendar/pcs')
-rw-r--r--calendar/pcs/cal.c2
1 files changed, 2 insertions, 0 deletions
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;
}
}