update to libical cvs on 20050215

This commit is contained in:
mvl%exedo.nl 2005-02-15 20:38:04 +00:00
parent 9e3ed09b24
commit d8487a75df
4 changed files with 11 additions and 5 deletions

View File

@ -3,7 +3,7 @@
FILE: icaltime.c FILE: icaltime.c
CREATOR: eric 02 June 2000 CREATOR: eric 02 June 2000
$Id: icalduration.c,v 1.18 2005/01/24 11:50:54 acampi Exp $ $Id: icalduration.c,v 1.19 2005/02/15 17:38:58 acampi Exp $
$Locker: $ $Locker: $
(C) COPYRIGHT 2000, Eric Busboom, http://www.softwarestudio.org (C) COPYRIGHT 2000, Eric Busboom, http://www.softwarestudio.org
@ -40,7 +40,9 @@
#include "icalmemory.h" #include "icalmemory.h"
#include "icalvalue.h" #include "icalvalue.h"
#ifdef WIN32
#define snprintf _snprintf
#endif
/* From Seth Alves, <alves@hungry.com> */ /* From Seth Alves, <alves@hungry.com> */

View File

@ -3,7 +3,7 @@
FILE: icalrecur.c FILE: icalrecur.c
CREATOR: eric 16 May 2000 CREATOR: eric 16 May 2000
$Id: icalrecur.c,v 1.62 2005/01/24 13:04:23 acampi Exp $ $Id: icalrecur.c,v 1.63 2005/02/15 17:39:00 acampi Exp $
$Locker: $ $Locker: $
@ -155,6 +155,10 @@ typedef long intptr_t;
#include <assert.h> #include <assert.h>
#include <stddef.h> /* For offsetof() macro */ #include <stddef.h> /* For offsetof() macro */
#ifdef WIN32
#define snprintf _snprintf
#endif
#include "pvl.h" #include "pvl.h"
/** This is the last year we will go up to, since 32-bit time_t values /** This is the last year we will go up to, since 32-bit time_t values

View File

@ -402,7 +402,7 @@ void VComponent::set_sequence(int v){
int VComponent::get_status(){ int VComponent::get_status(){
return (int)icalcomponent_get_status(imp); return (int)icalcomponent_get_status(imp);
} }
void VComponent::set_status(int v){ void VComponent::set_status(enum icalproperty_status v){
icalcomponent_set_status(imp, v); icalcomponent_set_status(imp, v);
} }

View File

@ -164,7 +164,7 @@ public:
void set_sequence(int v); void set_sequence(int v);
int get_status(); int get_status();
void set_status(int v); void set_status(enum icalproperty_status v);
public: public: