update to libical cvs on 20050215

This commit is contained in:
mvl%exedo.nl 2005-02-15 20:38:04 +00:00
Родитель 9e3ed09b24
Коммит d8487a75df
4 изменённых файлов: 11 добавлений и 5 удалений

Просмотреть файл

@ -3,7 +3,7 @@
FILE: icaltime.c
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: $
(C) COPYRIGHT 2000, Eric Busboom, http://www.softwarestudio.org
@ -40,7 +40,9 @@
#include "icalmemory.h"
#include "icalvalue.h"
#ifdef WIN32
#define snprintf _snprintf
#endif
/* From Seth Alves, <alves@hungry.com> */

Просмотреть файл

@ -3,7 +3,7 @@
FILE: icalrecur.c
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: $
@ -155,6 +155,10 @@ typedef long intptr_t;
#include <assert.h>
#include <stddef.h> /* For offsetof() macro */
#ifdef WIN32
#define snprintf _snprintf
#endif
#include "pvl.h"
/** This is the last year we will go up to, since 32-bit time_t values

Просмотреть файл

@ -402,7 +402,7 @@ void VComponent::set_sequence(int v){
int VComponent::get_status(){
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);
}

Просмотреть файл

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