aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/pcs/cal.h
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2001-05-08 06:13:14 +0800
committerJP Rosevear <jpr@src.gnome.org>2001-05-08 06:13:14 +0800
commit2ed7c634ca93703fdaf01187317a5ab504f0c6c8 (patch)
tree543c50fabd8c541eac01739b352dc2bef96a89ef /calendar/pcs/cal.h
parentfe1de979a2ab75cefdc168ccecc64bb6c02ebb9e (diff)
downloadgsoc2013-evolution-2ed7c634ca93703fdaf01187317a5ab504f0c6c8.tar
gsoc2013-evolution-2ed7c634ca93703fdaf01187317a5ab504f0c6c8.tar.gz
gsoc2013-evolution-2ed7c634ca93703fdaf01187317a5ab504f0c6c8.tar.bz2
gsoc2013-evolution-2ed7c634ca93703fdaf01187317a5ab504f0c6c8.tar.lz
gsoc2013-evolution-2ed7c634ca93703fdaf01187317a5ab504f0c6c8.tar.xz
gsoc2013-evolution-2ed7c634ca93703fdaf01187317a5ab504f0c6c8.tar.zst
gsoc2013-evolution-2ed7c634ca93703fdaf01187317a5ab504f0c6c8.zip
Convert to bonobo xobject
2001-05-07 JP Rosevear <jpr@ximian.com> * pcs/cal-factory.[hc]: Convert to bonobo xobject * pcs/cal.[hc]: Convert to bonobo xobject svn path=/trunk/; revision=9703
Diffstat (limited to 'calendar/pcs/cal.h')
-rw-r--r--calendar/pcs/cal.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/calendar/pcs/cal.h b/calendar/pcs/cal.h
index 844640cd8d..f9880178b5 100644
--- a/calendar/pcs/cal.h
+++ b/calendar/pcs/cal.h
@@ -24,7 +24,7 @@
#define CAL_H
#include <libgnome/gnome-defs.h>
-#include <bonobo/bonobo-object.h>
+#include <bonobo/bonobo-xobject.h>
#include "calendar/pcs/evolution-calendar.h"
#include "cal-common.h"
@@ -41,31 +41,29 @@ BEGIN_GNOME_DECLS
typedef struct _CalPrivate CalPrivate;
struct _Cal {
- BonoboObject object;
+ BonoboXObject object;
/* Private data */
CalPrivate *priv;
};
struct _CalClass {
- BonoboObjectClass parent_class;
+ BonoboXObjectClass parent_class;
+
+ POA_GNOME_Evolution_Calendar_Cal__epv epv;
};
GtkType cal_get_type (void);
Cal *cal_construct (Cal *cal,
- GNOME_Evolution_Calendar_Cal corba_cal,
CalBackend *backend,
GNOME_Evolution_Calendar_Listener listener);
-GNOME_Evolution_Calendar_Cal cal_corba_object_create (BonoboObject *object);
Cal *cal_new (CalBackend *backend, GNOME_Evolution_Calendar_Listener listener);
void cal_notify_update (Cal *cal, const char *uid);
void cal_notify_remove (Cal *cal, const char *uid);
-POA_GNOME_Evolution_Calendar_Cal__epv *cal_get_epv (void);
-
END_GNOME_DECLS