aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2002-11-15 09:25:54 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2002-11-15 09:25:54 +0800
commit273f7a811a3336a1ed8decae5521f365ea86d5e1 (patch)
tree88442a760d4930a2c03b94eac1dd958814f5f446
parente02c210303e0b99f169b93a4ec8ee90b98ad20b1 (diff)
downloadgsoc2013-evolution-273f7a811a3336a1ed8decae5521f365ea86d5e1.tar
gsoc2013-evolution-273f7a811a3336a1ed8decae5521f365ea86d5e1.tar.gz
gsoc2013-evolution-273f7a811a3336a1ed8decae5521f365ea86d5e1.tar.bz2
gsoc2013-evolution-273f7a811a3336a1ed8decae5521f365ea86d5e1.tar.lz
gsoc2013-evolution-273f7a811a3336a1ed8decae5521f365ea86d5e1.tar.xz
gsoc2013-evolution-273f7a811a3336a1ed8decae5521f365ea86d5e1.tar.zst
gsoc2013-evolution-273f7a811a3336a1ed8decae5521f365ea86d5e1.zip
(class_init): Pass the right parent
type to gtk_type_class(). svn path=/trunk/; revision=18770
-rw-r--r--shell/ChangeLog5
-rw-r--r--shell/evolution-shell-client.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index cf7d56d37b..8c4ad15479 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,5 +1,10 @@
2002-11-14 Ettore Perazzoli <ettore@ximian.com>
+ * evolution-shell-client.c (class_init): Pass the right parent
+ type to gtk_type_class().
+
+2002-11-14 Ettore Perazzoli <ettore@ximian.com>
+
* e-shell-user-creatable-items-handler.c,
* e-shell-user-creatable-items-handler.c: Changed into a GObject
subclass instead of a GtkObject subclass.
diff --git a/shell/evolution-shell-client.c b/shell/evolution-shell-client.c
index 27739c1193..c300fdad51 100644
--- a/shell/evolution-shell-client.c
+++ b/shell/evolution-shell-client.c
@@ -347,7 +347,7 @@ class_init (EvolutionShellClientClass *klass)
{
GObjectClass *object_class;
- parent_class = gtk_type_class (bonobo_object_get_type ());
+ parent_class = gtk_type_class (PARENT_TYPE);
object_class = G_OBJECT_CLASS (klass);