diff options
author | Federico Mena Quintero <federico@helixcode.com> | 2000-02-02 17:51:20 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 2000-02-02 17:51:20 +0800 |
commit | 9d6fc52249f34b5a3985bea8ace18059be9e4bba (patch) | |
tree | 59ac26466d87061d4573e72fe228d47b77dbb318 /calendar/cal-factory.c | |
parent | 9d4be61768f69a0aff9daa55c088724d0d5a54a6 (diff) | |
download | gsoc2013-evolution-9d6fc52249f34b5a3985bea8ace18059be9e4bba.tar gsoc2013-evolution-9d6fc52249f34b5a3985bea8ace18059be9e4bba.tar.gz gsoc2013-evolution-9d6fc52249f34b5a3985bea8ace18059be9e4bba.tar.bz2 gsoc2013-evolution-9d6fc52249f34b5a3985bea8ace18059be9e4bba.tar.lz gsoc2013-evolution-9d6fc52249f34b5a3985bea8ace18059be9e4bba.tar.xz gsoc2013-evolution-9d6fc52249f34b5a3985bea8ace18059be9e4bba.tar.zst gsoc2013-evolution-9d6fc52249f34b5a3985bea8ace18059be9e4bba.zip |
Added the get_object() method.
2000-02-03 Federico Mena Quintero <federico@helixcode.com>
* evolution-calendar.idl (Cal): Added the get_object() method.
* cal-client.c (cal_client_get_object): New function to get a
calendar object by its UID.
* cal.c (Cal_get_object): Implemented.
* cal-backend.c (cal_backend_get_object): New unfinished backend
function. We need some reorganizing of how the calendar objects
are stored.
svn path=/trunk/; revision=1663
Diffstat (limited to 'calendar/cal-factory.c')
-rw-r--r-- | calendar/cal-factory.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/cal-factory.c b/calendar/cal-factory.c index f544964612..d5b79ef423 100644 --- a/calendar/cal-factory.c +++ b/calendar/cal-factory.c @@ -156,7 +156,7 @@ cal_factory_destroy (GtkObject *object) /* CalFactory::load method */ static void CalFactory_load (PortableServer_Servant servant, - CORBA_char *uri, + const CORBA_char *uri, Evolution_Calendar_Listener listener, CORBA_Environment *ev) { @@ -187,7 +187,7 @@ CalFactory_load (PortableServer_Servant servant, /* CalFactory::create method */ static void CalFactory_create (PortableServer_Servant servant, - CORBA_char *uri, + const CORBA_char *uri, Evolution_Calendar_Listener listener, CORBA_Environment *ev) { |