aboutsummaryrefslogtreecommitdiffstats
path: root/shell/evolution-shell-view.c
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2003-01-14 02:51:39 +0800
committerDan Winship <danw@src.gnome.org>2003-01-14 02:51:39 +0800
commit092ccc49c41a41cb3b395750d3a0b0a201f72151 (patch)
tree9df48d4c79bee096427cffdcb102d9fced6998f5 /shell/evolution-shell-view.c
parentefa11b778153e179c7739e6fe8ed7622f0fdfe27 (diff)
downloadgsoc2013-evolution-092ccc49c41a41cb3b395750d3a0b0a201f72151.tar
gsoc2013-evolution-092ccc49c41a41cb3b395750d3a0b0a201f72151.tar.gz
gsoc2013-evolution-092ccc49c41a41cb3b395750d3a0b0a201f72151.tar.bz2
gsoc2013-evolution-092ccc49c41a41cb3b395750d3a0b0a201f72151.tar.lz
gsoc2013-evolution-092ccc49c41a41cb3b395750d3a0b0a201f72151.tar.xz
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-view.c')
-rw-r--r--shell/evolution-shell-view.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/shell/evolution-shell-view.c b/shell/evolution-shell-view.c
index 2735772fea..3091c3565f 100644
--- a/shell/evolution-shell-view.c
+++ b/shell/evolution-shell-view.c
@@ -33,8 +33,8 @@
#include "e-shell-marshal.h"
-#define PARENT_TYPE bonobo_x_object_get_type ()
-static BonoboXObjectClass *parent_class = NULL;
+#define PARENT_TYPE bonobo_object_get_type ()
+static BonoboObjectClass *parent_class = NULL;
struct _EvolutionShellViewPrivate {
int dummy;
@@ -146,7 +146,7 @@ impl_finalize (GObject *object)
static void
-class_init (EvolutionShellViewClass *klass)
+evolution_shell_view_class_init (EvolutionShellViewClass *klass)
{
POA_GNOME_Evolution_ShellView__epv *epv;
GObjectClass *object_class;
@@ -222,11 +222,11 @@ class_init (EvolutionShellViewClass *klass)
e_shell_marshal_NONE__NONE,
G_TYPE_NONE, 0);
- parent_class = g_type_class_ref(bonobo_x_object_get_type ());
+ parent_class = g_type_class_ref(bonobo_object_get_type ());
}
static void
-init (EvolutionShellView *shell_view)
+evolution_shell_view_init (EvolutionShellView *shell_view)
{
EvolutionShellViewPrivate *priv;
@@ -252,7 +252,7 @@ evolution_shell_view_new (void)
}
-E_MAKE_X_TYPE (evolution_shell_view, "EvolutionShellView", EvolutionShellView,
- class_init, init, PARENT_TYPE,
- POA_GNOME_Evolution_ShellView__init,
- G_STRUCT_OFFSET (EvolutionShellViewClass, epv))
+BONOBO_TYPE_FUNC_FULL (EvolutionShellView,
+ GNOME_Evolution_ShellView,
+ PARENT_TYPE,
+ evolution_shell_view)