diff options
author | Dan Winship <danw@src.gnome.org> | 2003-02-06 02:43:59 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2003-02-06 02:43:59 +0800 |
commit | 859e08c1122cc267d3777a289bbc3a95c4cbc692 (patch) | |
tree | f2e4fd7a94bda45341390cca8d2a84607af1318e /calendar/gui/comp-editor-factory.c | |
parent | 05020b82c39a859834995723d5726e026b82de75 (diff) | |
download | gsoc2013-evolution-859e08c1122cc267d3777a289bbc3a95c4cbc692.tar.gz gsoc2013-evolution-859e08c1122cc267d3777a289bbc3a95c4cbc692.tar.zst gsoc2013-evolution-859e08c1122cc267d3777a289bbc3a95c4cbc692.zip |
s/BonoboXObject/BonoboObject/
* gui/calendar-offline-handler.c: s/BonoboXObject/BonoboObject/
* gui/comp-editor-factory.c: Likewise
svn path=/trunk/; revision=19764
Diffstat (limited to 'calendar/gui/comp-editor-factory.c')
-rw-r--r-- | calendar/gui/comp-editor-factory.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/calendar/gui/comp-editor-factory.c b/calendar/gui/comp-editor-factory.c index eea785df33..60b59f3b9e 100644 --- a/calendar/gui/comp-editor-factory.c +++ b/calendar/gui/comp-editor-factory.c @@ -100,14 +100,14 @@ static void impl_editNew (PortableServer_Servant servant, const GNOME_Evolution_Calendar_CalObjType type, CORBA_Environment *ev); -static BonoboXObjectClass *parent_class = NULL; +static BonoboObjectClass *parent_class = NULL; -BONOBO_X_TYPE_FUNC_FULL (CompEditorFactory, - GNOME_Evolution_Calendar_CompEditorFactory, - BONOBO_X_OBJECT_TYPE, - comp_editor_factory); +BONOBO_TYPE_FUNC_FULL (CompEditorFactory, + GNOME_Evolution_Calendar_CompEditorFactory, + BONOBO_OBJECT_TYPE, + comp_editor_factory); /* Class initialization function for the component editor factory */ static void @@ -117,7 +117,7 @@ comp_editor_factory_class_init (CompEditorFactoryClass *class) object_class = (GtkObjectClass *) class; - parent_class = gtk_type_class (BONOBO_X_OBJECT_TYPE); + parent_class = gtk_type_class (BONOBO_OBJECT_TYPE); class->epv.editExisting = impl_editExisting; class->epv.editNew = impl_editNew; |