diff options
author | Dan Winship <danw@src.gnome.org> | 2003-01-14 02:51:39 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2003-01-14 02:51:39 +0800 |
commit | 092ccc49c41a41cb3b395750d3a0b0a201f72151 (patch) | |
tree | 9df48d4c79bee096427cffdcb102d9fced6998f5 /shell/evolution-shell-component.c | |
parent | efa11b778153e179c7739e6fe8ed7622f0fdfe27 (diff) | |
download | gsoc2013-evolution-092ccc49c41a41cb3b395750d3a0b0a201f72151.tar.gz gsoc2013-evolution-092ccc49c41a41cb3b395750d3a0b0a201f72151.tar.zst gsoc2013-evolution-092ccc49c41a41cb3b395750d3a0b0a201f72151.zip |
s/BonoboXObject/BonoboObject/ (for BONOBO_DISABLE_DEPRECATED)
* s/BonoboXObject/BonoboObject/ (for BONOBO_DISABLE_DEPRECATED)
svn path=/trunk/; revision=19427
Diffstat (limited to 'shell/evolution-shell-component.c')
-rw-r--r-- | shell/evolution-shell-component.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/shell/evolution-shell-component.c b/shell/evolution-shell-component.c index abeab450ab..e4038b7fe3 100644 --- a/shell/evolution-shell-component.c +++ b/shell/evolution-shell-component.c @@ -43,9 +43,9 @@ #define PING_DELAY 10000 -#define PARENT_TYPE BONOBO_X_OBJECT_TYPE +#define PARENT_TYPE BONOBO_OBJECT_TYPE -static BonoboXObjectClass *parent_class = NULL; +static BonoboObjectClass *parent_class = NULL; struct _UserCreatableItemType { char *id; @@ -858,7 +858,7 @@ impl_owner_died (EvolutionShellComponent *shell_component) /* Initialization. */ static void -class_init (EvolutionShellComponentClass *klass) +evolution_shell_component_class_init (EvolutionShellComponentClass *klass) { EvolutionShellComponentClass *shell_component_class; GObjectClass *object_class; @@ -973,7 +973,7 @@ class_init (EvolutionShellComponentClass *klass) } static void -init (EvolutionShellComponent *shell_component) +evolution_shell_component_init (EvolutionShellComponent *shell_component) { EvolutionShellComponentPrivate *priv; @@ -1191,7 +1191,7 @@ evolution_shell_component_result_to_string (EvolutionShellComponentResult result } -E_MAKE_X_TYPE (evolution_shell_component, "EvolutionShellComponent", EvolutionShellComponent, - class_init, init, PARENT_TYPE, - POA_GNOME_Evolution_ShellComponent__init, - G_STRUCT_OFFSET (EvolutionShellComponentClass, epv)) +BONOBO_TYPE_FUNC_FULL (EvolutionShellComponent, + GNOME_Evolution_ShellComponent, + PARENT_TYPE, + evolution_shell_component) |