diff options
author | Federico Mena Quintero <federico@helixcode.com> | 2000-01-29 18:48:09 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 2000-01-29 18:48:09 +0800 |
commit | 390f24328e589387b7a2b26a36c5f138cc636c1b (patch) | |
tree | 5a2fcb9dced60d4e4fd670e8077e4aa6058cb5b0 /calendar/evolution-calendar.idl | |
parent | 542fbe8d77f0505bf4e8ef4b03e8e2a1762309e6 (diff) | |
download | gsoc2013-evolution-390f24328e589387b7a2b26a36c5f138cc636c1b.tar gsoc2013-evolution-390f24328e589387b7a2b26a36c5f138cc636c1b.tar.gz gsoc2013-evolution-390f24328e589387b7a2b26a36c5f138cc636c1b.tar.bz2 gsoc2013-evolution-390f24328e589387b7a2b26a36c5f138cc636c1b.tar.lz gsoc2013-evolution-390f24328e589387b7a2b26a36c5f138cc636c1b.tar.xz gsoc2013-evolution-390f24328e589387b7a2b26a36c5f138cc636c1b.tar.zst gsoc2013-evolution-390f24328e589387b7a2b26a36c5f138cc636c1b.zip |
Changed the namespace from GNOME::Calendar to Evolution::Calendar.
2000-01-30 Federico Mena Quintero <federico@helixcode.com>
* evolution-calendar.idl: Changed the namespace from
GNOME::Calendar to Evolution::Calendar.
(Listener::LoadStatus): Fixed SUCESSS -> SUCCESS typo. And I
never noticed it in the implementation. Ain't M-/ grand?
* Makefile.am: Changed ocurrences of gnome-calendar.idl to
evolution-calendar.idl.
* *.[ch]: Changed GNOME_Calendar_foo identifiers to
Evolution_Calendar_foo.
svn path=/trunk/; revision=1652
Diffstat (limited to 'calendar/evolution-calendar.idl')
-rw-r--r-- | calendar/evolution-calendar.idl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/calendar/evolution-calendar.idl b/calendar/evolution-calendar.idl index 4fc6edd9b2..2be11abe1f 100644 --- a/calendar/evolution-calendar.idl +++ b/calendar/evolution-calendar.idl @@ -1,4 +1,4 @@ -/* GNOME calendar interfaces +/* Evolution calendar interface * * Copyright (C) 2000 Eskil Heyn Olsen * Copyright (C) 2000 Helix Code, Inc. @@ -7,12 +7,12 @@ * Federico Mena-Quintero <federico@helixcode.com> */ -#ifndef _GNOME_CALENDAR_IDL_ -#define _GNOME_CALENDAR_IDL_ +#ifndef _EVOLUTION_CALENDAR_IDL_ +#define _EVOLUTION_CALENDAR_IDL_ #include <Bonobo.idl> -module GNOME { +module Evolution { module Calendar { /* A calendar object (event/todo/journal/etc), represented as an @@ -35,7 +35,7 @@ module Calendar { interface Listener : Bonobo::Unknown { /* Return status when loading a calendar; we need better error reporting */ enum LoadStatus { - SUCESSS, + SUCCESS, ERROR }; |