diff options
Diffstat (limited to 'calendar/cal-factory.h')
-rw-r--r-- | calendar/cal-factory.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/calendar/cal-factory.h b/calendar/cal-factory.h index 0c227148c2..18f59d48b8 100644 --- a/calendar/cal-factory.h +++ b/calendar/cal-factory.h @@ -23,7 +23,7 @@ #define CAL_FACTORY_H #include <libgnome/gnome-defs.h> -#include <bonobo/gnome-object.h> +#include <bonobo/bonobo-object.h> #include "gnome-calendar.h" BEGIN_GNOME_DECLS @@ -41,20 +41,20 @@ typedef struct _CalFactory CalFactory; typedef struct _CalFactoryClass CalFactoryClass; struct _CalFactory { - GnomeObject object; + BonoboObject object; /* Private data */ gpointer priv; }; struct _CalFactoryClass { - GnomeObjectClass parent_class; + BonoboObjectClass parent_class; }; 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 (GnomeObject *object); +GNOME_Calendar_CalFactory cal_factory_corba_object_create (BonoboObject *object); CalFactory *cal_factory_new (void); |