aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/cal-client/cal-listener.h
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@helixcode.com>2000-01-12 12:13:36 +0800
committerArturo Espinosa <unammx@src.gnome.org>2000-01-12 12:13:36 +0800
commitf3c94fc0f415a4025add6debe451ca3e9e449d83 (patch)
treedc34dc1c3fe8e9afd27c999db8ead150d92f2b2f /calendar/cal-client/cal-listener.h
parent550233b97a86b9b1458fc30a658d431a42ebcea2 (diff)
downloadgsoc2013-evolution-f3c94fc0f415a4025add6debe451ca3e9e449d83.tar
gsoc2013-evolution-f3c94fc0f415a4025add6debe451ca3e9e449d83.tar.gz
gsoc2013-evolution-f3c94fc0f415a4025add6debe451ca3e9e449d83.tar.bz2
gsoc2013-evolution-f3c94fc0f415a4025add6debe451ca3e9e449d83.tar.lz
gsoc2013-evolution-f3c94fc0f415a4025add6debe451ca3e9e449d83.tar.xz
gsoc2013-evolution-f3c94fc0f415a4025add6debe451ca3e9e449d83.tar.zst
gsoc2013-evolution-f3c94fc0f415a4025add6debe451ca3e9e449d83.zip
Removed the CORBA listener methods, adjusted for the new IDL.
2000-01-11 Federico Mena Quintero <federico@helixcode.com> * cal.c: Removed the CORBA listener methods, adjusted for the new IDL. * cal-listener.c (cal_listener_init): Create the private structure. In it we hold a reference to the calendar the listener is watching. (cal_listener_destroy): Destroy the private structure and unref the calendar. (Listener_cal_loaded): Stuff the calendar into our private data. (Listener_obj_added): Adjusted for new IDL. (Listener_obj_removed): Likewise. svn path=/trunk/; revision=1560
Diffstat (limited to 'calendar/cal-client/cal-listener.h')
-rw-r--r--calendar/cal-client/cal-listener.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/calendar/cal-client/cal-listener.h b/calendar/cal-client/cal-listener.h
index aa502f3fb3..55772cb1ba 100644
--- a/calendar/cal-client/cal-listener.h
+++ b/calendar/cal-client/cal-listener.h
@@ -42,6 +42,9 @@ typedef struct _CalListenerClass CalListenerClass;
struct _CalListener {
GnomeObject object;
+
+ /* Private data */
+ gpointer priv;
};
struct _CalListenerClass {
@@ -61,6 +64,8 @@ GNOME_Calendar_Listener cal_listener_corba_object_create (GnomeObject *object);
CalListener *cal_listener_new (void);
+GNOME_Calendar_Cal cal_listener_get_calendar (CalListener *listener);
+
POA_GNOME_Calendar_Listener__epv *cal_listener_get_epv (void);