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-shell-user-creatable-items-handler.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-shell-user-creatable-items-handler.h')
-rw-r--r-- | shell/e-shell-user-creatable-items-handler.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/e-shell-user-creatable-items-handler.h b/shell/e-shell-user-creatable-items-handler.h index 77a3b6b608..228603573a 100644 --- a/shell/e-shell-user-creatable-items-handler.h +++ b/shell/e-shell-user-creatable-items-handler.h @@ -25,7 +25,7 @@ #include "evolution-shell-component-client.h" -#include <gtk/gtkobject.h> +#include <glib-object.h> #include <bonobo/bonobo-ui-component.h> #ifdef __cplusplus @@ -47,13 +47,13 @@ typedef struct _EShellUserCreatableItemsHandlerClass EShellUserCreatableItemsH #include "e-shell-view.h" struct _EShellUserCreatableItemsHandler { - GtkObject parent; + GObject parent; EShellUserCreatableItemsHandlerPrivate *priv; }; struct _EShellUserCreatableItemsHandlerClass { - GtkObjectClass parent_class; + GObjectClass parent_class; }; |