aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/cal-util/cal-component.h
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@helixcode.com>2000-06-30 15:22:43 +0800
committerFederico Mena Quintero <federico@src.gnome.org>2000-06-30 15:22:43 +0800
commit08d1bc1329686dc7efa99c3685b720dbf705d7f5 (patch)
tree9bb98b42878b51873c0edcc2c95f06962a13eb34 /calendar/cal-util/cal-component.h
parent55499e0ce4bb8a081d12e7243a0dd42aa55bbbfd (diff)
downloadgsoc2013-evolution-08d1bc1329686dc7efa99c3685b720dbf705d7f5.tar
gsoc2013-evolution-08d1bc1329686dc7efa99c3685b720dbf705d7f5.tar.gz
gsoc2013-evolution-08d1bc1329686dc7efa99c3685b720dbf705d7f5.tar.bz2
gsoc2013-evolution-08d1bc1329686dc7efa99c3685b720dbf705d7f5.tar.lz
gsoc2013-evolution-08d1bc1329686dc7efa99c3685b720dbf705d7f5.tar.xz
gsoc2013-evolution-08d1bc1329686dc7efa99c3685b720dbf705d7f5.tar.zst
gsoc2013-evolution-08d1bc1329686dc7efa99c3685b720dbf705d7f5.zip
Get an EvolutionShellClient instead of an Evolution_Shell to match the
2000-06-29 Ettore Perazzoli <ettore@helixcode.com> * notes/component-factory.c (owner_set_cb): Get an EvolutionShellClient instead of an Evolution_Shell to match the changes in libeshell. 2000-06-29 Peter Williams <peterw@helixcode.com> * configure.in: Re-enable GNOME_PILOT_CHECK. Change AC_MSG_CHECKING([For...]) to [for...]. It's the little things that matter. 2000-06-28 Ettore Perazzoli <ettore@helixcode.com> * configure.in: `AM_PATH_GCONF'. 2000-06-27 Peter Williams <peterw@curious-george.helixcode.com> * configure.in (ctime_r): Check for whether ctime_r takes two (Linux) or three (Solaris) arguments. (AC_OUTPUT): Don't create notes/Makefile twice. * acconfig.h: Add CTIME_R_THREE_ARGS to the list. svn path=/trunk/; revision=3821
Diffstat (limited to 'calendar/cal-util/cal-component.h')
-rw-r--r--calendar/cal-util/cal-component.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/calendar/cal-util/cal-component.h b/calendar/cal-util/cal-component.h
index 1a5a271d9b..bc869670c8 100644
--- a/calendar/cal-util/cal-component.h
+++ b/calendar/cal-util/cal-component.h
@@ -71,16 +71,18 @@ char *cal_component_gen_uid (void);
CalComponent *cal_component_new (void);
-CalComponent *cal_component_new_from_icalcomponent (icalcomponent *ical);
+void cal_component_set_new_vtype (CalComponent *comp, CalComponentVType type);
+
+void cal_component_set_icalcomponent (CalComponent *comp, icalcomponent *icalcomp);
+icalcomponent *cal_component_get_icalcomponent (CalComponent *comp);
CalComponentVType cal_component_get_vtype (CalComponent *comp);
-void cal_component_set_vtype (CalComponent *comp, CalComponentVType type);
const char *cal_component_get_uid (CalComponent *comp);
void cal_component_set_uid (CalComponent *comp, const char *uid);
-const char *cal_component_get_summary (CalComponent *comp);
-void cal_component_set_summary (CalComponent *comp, const char *summary);
+void cal_component_get_summary (CalComponent *comp, const char **summary, const char **altrep);
+void cal_component_set_summary (CalComponent *comp, const char *summary, const char *altrep);