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/pcs/cal-factory.h | |
parent | 542fbe8d77f0505bf4e8ef4b03e8e2a1762309e6 (diff) | |
download | gsoc2013-evolution-390f24328e589387b7a2b26a36c5f138cc636c1b.tar.gz 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/pcs/cal-factory.h')
-rw-r--r-- | calendar/pcs/cal-factory.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/calendar/pcs/cal-factory.h b/calendar/pcs/cal-factory.h index 18f59d48b8..9d5fd57e2c 100644 --- a/calendar/pcs/cal-factory.h +++ b/calendar/pcs/cal-factory.h @@ -1,4 +1,4 @@ -/* GNOME calendar factory +/* Evolution calendar factory * * Copyright (C) 2000 Helix Code, Inc. * @@ -24,7 +24,7 @@ #include <libgnome/gnome-defs.h> #include <bonobo/bonobo-object.h> -#include "gnome-calendar.h" +#include "evolution-calendar.h" BEGIN_GNOME_DECLS @@ -53,15 +53,15 @@ struct _CalFactoryClass { GtkType cal_factory_get_type (void); -CalFactory *cal_factory_construct (CalFactory *factory, GNOME_Calendar_CalFactory corba_factory); -GNOME_Calendar_CalFactory cal_factory_corba_object_create (BonoboObject *object); +CalFactory *cal_factory_construct (CalFactory *factory, Evolution_Calendar_CalFactory corba_factory); +Evolution_Calendar_CalFactory cal_factory_corba_object_create (BonoboObject *object); CalFactory *cal_factory_new (void); -void cal_factory_load (CalFactory *factory, const char *uri, GNOME_Calendar_Listener listener); -void cal_factory_create (CalFactory *factory, const char *uri, GNOME_Calendar_Listener listener); +void cal_factory_load (CalFactory *factory, const char *uri, Evolution_Calendar_Listener listener); +void cal_factory_create (CalFactory *factory, const char *uri, Evolution_Calendar_Listener listener); -POA_GNOME_Calendar_CalFactory__epv *cal_factory_get_epv (void); +POA_Evolution_Calendar_CalFactory__epv *cal_factory_get_epv (void); |