diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2002-11-15 09:11:37 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2002-11-15 09:11:37 +0800 |
commit | e02c210303e0b99f169b93a4ec8ee90b98ad20b1 (patch) | |
tree | 2e3a4a7eecd740b1259fc2c3cf4d011d85e85f94 /shell/e-component-registry.h | |
parent | b75c80d63f8aa474b8ba14318b8c89f2c13be845 (diff) | |
download | gsoc2013-evolution-e02c210303e0b99f169b93a4ec8ee90b98ad20b1.tar.gz gsoc2013-evolution-e02c210303e0b99f169b93a4ec8ee90b98ad20b1.tar.zst gsoc2013-evolution-e02c210303e0b99f169b93a4ec8ee90b98ad20b1.zip |
e-shell-user-creatable-items-handler.c, Changed into a GObject subclass
* e-shell-user-creatable-items-handler.c,
* e-shell-user-creatable-items-handler.c: Changed into a GObject
subclass instead of a GtkObject subclass.
* e-component-registry.c,
* e-component-registri.h: Changed into a GObject subclass instead
of a GtkObject subclass.
* evolution-shell-view.c (impl_ShellView_set_message): Remove
bogus GTK_OBJECT() cast in call to g_signal_emit().
(impl_ShellView_unset_message): Likewise.
(impl_ShellView_change_current_view): Likewise.
(impl_ShellView_set_title): Likewise.
svn path=/trunk/; revision=18769
Diffstat (limited to 'shell/e-component-registry.h')
-rw-r--r-- | shell/e-component-registry.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/e-component-registry.h b/shell/e-component-registry.h index 84e802bf3b..856a24f093 100644 --- a/shell/e-component-registry.h +++ b/shell/e-component-registry.h @@ -45,13 +45,13 @@ typedef struct _EComponentRegistryClass EComponentRegistryClass; #include "evolution-shell-component-client.h" struct _EComponentRegistry { - GtkObject parent; + GObject parent; EComponentRegistryPrivate *priv; }; struct _EComponentRegistryClass { - GtkObjectClass parent_class; + GObjectClass parent_class; }; |