aboutsummaryrefslogtreecommitdiffstats
path: root/libical/src/test/storage.c
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@src.gnome.org>2000-12-12 07:01:26 +0800
committerFederico Mena Quintero <federico@src.gnome.org>2000-12-12 07:01:26 +0800
commit26eee7328031f78b063ab71265ef4fddc8619c72 (patch)
tree65334073d42b48a4c23f2d7d20a6813c2113f57c /libical/src/test/storage.c
parent5ccacd6a5bbeb2d91aea706f37cc5f96ee3144fb (diff)
downloadgsoc2013-evolution-26eee7328031f78b063ab71265ef4fddc8619c72.tar
gsoc2013-evolution-26eee7328031f78b063ab71265ef4fddc8619c72.tar.gz
gsoc2013-evolution-26eee7328031f78b063ab71265ef4fddc8619c72.tar.bz2
gsoc2013-evolution-26eee7328031f78b063ab71265ef4fddc8619c72.tar.lz
gsoc2013-evolution-26eee7328031f78b063ab71265ef4fddc8619c72.tar.xz
gsoc2013-evolution-26eee7328031f78b063ab71265ef4fddc8619c72.tar.zst
gsoc2013-evolution-26eee7328031f78b063ab71265ef4fddc8619c72.zip
Fix fucking CVS conflicts because fucking CVS is a fucking big doofus - Federico
svn path=/trunk/; revision=6920
Diffstat (limited to 'libical/src/test/storage.c')
-rw-r--r--libical/src/test/storage.c31
1 files changed, 12 insertions, 19 deletions
diff --git a/libical/src/test/storage.c b/libical/src/test/storage.c
index d53001b574..b8eb48c30f 100644
--- a/libical/src/test/storage.c
+++ b/libical/src/test/storage.c
@@ -6,7 +6,6 @@
DESCRIPTION:
$Id$
- $Locker$
(C) COPYRIGHT 1999 Eric Busboom
http://www.softwarestudio.org
@@ -162,11 +161,9 @@ void test_fileset()
cout = icalfileset_new(OUTPUT_FILE);
assert(cout != 0);
- for (itr = icalfileset_get_first_component(cout,
- ICAL_ANY_COMPONENT);
+ for (itr = icalfileset_get_first_component(cout);
itr != 0;
- itr = icalfileset_get_next_component(cout,
- ICAL_ANY_COMPONENT)){
+ itr = icalfileset_get_next_component(cout)){
icalcomponent *event;
icalproperty *dtstart, *dtend;
@@ -190,11 +187,9 @@ void test_fileset()
cout = icalfileset_new(OUTPUT_FILE);
assert(cout != 0);
- for (itr = icalfileset_get_first_component(cout,
- ICAL_ANY_COMPONENT);
+ for (itr = icalfileset_get_first_component(cout);
itr != 0;
- itr = icalfileset_get_next_component(cout,
- ICAL_ANY_COMPONENT)){
+ itr = icalfileset_get_next_component(cout)){
icalfileset_remove_component(cout, itr);
@@ -209,11 +204,9 @@ void test_fileset()
assert(cout != 0);
count =0;
- for (itr = icalfileset_get_first_component(cout,
- ICAL_ANY_COMPONENT);
+ for (itr = icalfileset_get_first_component(cout);
itr != 0;
- itr = icalfileset_get_next_component(cout,
- ICAL_ANY_COMPONENT)){
+ itr = icalfileset_get_next_component(cout)){
icalcomponent *event;
icalproperty *dtstart, *dtend;
@@ -269,11 +262,9 @@ int test_dirset()
rtime.end = rtime.start;
rtime.end.hour++;
- for (itr = icalfileset_get_first_component(cluster,
- ICAL_ANY_COMPONENT);
+ for (itr = icalfileset_get_first_component(cluster);
itr != 0;
- itr = icalfileset_get_next_component(cluster,
- ICAL_ANY_COMPONENT)){
+ itr = icalfileset_get_next_component(cluster)){
icalcomponent *clone, *inner;
icalproperty *p;
@@ -370,9 +361,9 @@ int test_dirset()
#endif
- for(c = icaldirset_get_first_component(s,ICAL_ANY_COMPONENT);
+ for(c = icaldirset_get_first_component(s);
c != 0;
- c = icaldirset_get_next_component(s,ICAL_ANY_COMPONENT)){
+ c = icaldirset_get_next_component(s)){
if (c != 0){
printf("%s", icalcomponent_as_ical_string(c));;
@@ -395,6 +386,7 @@ int test_dirset()
return 0;
}
+#if 0
void test_calendar()
{
icalcomponent *comp;
@@ -439,6 +431,7 @@ void test_calendar()
icalcalendar_free(calendar);
}
+#endif
int main(int argc, char *argv[])