diff options
author | Michael Meeks <michael@ximian.com> | 2001-02-23 08:53:41 +0800 |
---|---|---|
committer | Michael Meeks <michael@src.gnome.org> | 2001-02-23 08:53:41 +0800 |
commit | f581cae993b563b395a12afda0c270faa83e551a (patch) | |
tree | af73bf505f5230a6029517d3f8ca1b2fe93a692e /shell/evolution-shell-component.h | |
parent | 5c9c2f33b943c9996eac380d5534b80ce5402360 (diff) | |
download | gsoc2013-evolution-f581cae993b563b395a12afda0c270faa83e551a.tar.gz gsoc2013-evolution-f581cae993b563b395a12afda0c270faa83e551a.tar.zst gsoc2013-evolution-f581cae993b563b395a12afda0c270faa83e551a.zip |
add include. (show_import_wizard): update signature to that of a verb.
2001-02-21 Michael Meeks <michael@ximian.com>
* importer/importer.c: add include.
(show_import_wizard): update signature to that of a verb.
* evolution-shell-component.c (corba_class_init): move into
(class_init): here & upd.
(evolution_shell_component_construct): upd.
(create_servant): kill.
(E_MAKE_TYPE) -> E_MAKE_X_TYPE.
svn path=/trunk/; revision=8359
Diffstat (limited to 'shell/evolution-shell-component.h')
-rw-r--r-- | shell/evolution-shell-component.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/shell/evolution-shell-component.h b/shell/evolution-shell-component.h index 21ae216267..0f5e57b9af 100644 --- a/shell/evolution-shell-component.h +++ b/shell/evolution-shell-component.h @@ -24,7 +24,7 @@ #ifndef EVOLUTION_SHELL_COMPONENT_H #define EVOLUTION_SHELL_COMPONENT_H -#include <bonobo/bonobo-object.h> +#include <bonobo/bonobo-xobject.h> #include <bonobo/bonobo-control.h> #include "Evolution.h" @@ -102,13 +102,15 @@ struct _EvolutionShellComponentFolderType { typedef struct _EvolutionShellComponentFolderType EvolutionShellComponentFolderType; struct _EvolutionShellComponent { - BonoboObject parent; + BonoboXObject parent; EvolutionShellComponentPrivate *priv; }; struct _EvolutionShellComponentClass { - BonoboObjectClass parent_class; + BonoboXObjectClass parent_class; + + POA_GNOME_Evolution_ShellComponent__epv epv; /* Signals. */ @@ -122,7 +124,6 @@ struct _EvolutionShellComponentClass { GtkType evolution_shell_component_get_type (void); void evolution_shell_component_construct (EvolutionShellComponent *shell_component, const EvolutionShellComponentFolderType folder_types[], - GNOME_Evolution_ShellComponent corba_object, EvolutionShellComponentCreateViewFn create_view_fn, EvolutionShellComponentCreateFolderFn create_folder_fn, EvolutionShellComponentRemoveFolderFn remove_folder_fn, |