aboutsummaryrefslogtreecommitdiffstats
path: root/shell/evolution-shell-view.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2002-11-15 09:11:37 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2002-11-15 09:11:37 +0800
commite02c210303e0b99f169b93a4ec8ee90b98ad20b1 (patch)
tree2e3a4a7eecd740b1259fc2c3cf4d011d85e85f94 /shell/evolution-shell-view.c
parentb75c80d63f8aa474b8ba14318b8c89f2c13be845 (diff)
downloadgsoc2013-evolution-e02c210303e0b99f169b93a4ec8ee90b98ad20b1.tar
gsoc2013-evolution-e02c210303e0b99f169b93a4ec8ee90b98ad20b1.tar.gz
gsoc2013-evolution-e02c210303e0b99f169b93a4ec8ee90b98ad20b1.tar.bz2
gsoc2013-evolution-e02c210303e0b99f169b93a4ec8ee90b98ad20b1.tar.lz
gsoc2013-evolution-e02c210303e0b99f169b93a4ec8ee90b98ad20b1.tar.xz
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/evolution-shell-view.c')
-rw-r--r--shell/evolution-shell-view.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/shell/evolution-shell-view.c b/shell/evolution-shell-view.c
index fc77785dd3..b7cdb40bc3 100644
--- a/shell/evolution-shell-view.c
+++ b/shell/evolution-shell-view.c
@@ -82,7 +82,7 @@ impl_ShellView_change_current_view (PortableServer_Servant servant,
BonoboObject *bonobo_object;
bonobo_object = bonobo_object_from_servant (servant);
- g_signal_emit (GTK_OBJECT (bonobo_object), signals[CHANGE_VIEW], 0, uri);
+ g_signal_emit (bonobo_object, signals[CHANGE_VIEW], 0, uri);
}
static void
@@ -93,7 +93,7 @@ impl_ShellView_set_title (PortableServer_Servant servant,
BonoboObject *bonobo_object;
bonobo_object = bonobo_object_from_servant (servant);
- g_signal_emit (GTK_OBJECT (bonobo_object), signals[SET_TITLE], 0, title);
+ g_signal_emit (bonobo_object, signals[SET_TITLE], 0, title);
}
static void
@@ -104,7 +104,7 @@ impl_ShellView_set_folder_bar_label (PortableServer_Servant servant,
BonoboObject *bonobo_object;
bonobo_object = bonobo_object_from_servant (servant);
- g_signal_emit (GTK_OBJECT (bonobo_object), signals[SET_FOLDER_BAR_LABEL], 0, text);
+ g_signal_emit (bonobo_object, signals[SET_FOLDER_BAR_LABEL], 0, text);
}
static void
@@ -114,7 +114,7 @@ impl_ShellView_show_settings (PortableServer_Servant servant,
BonoboObject *bonobo_object;
bonobo_object = bonobo_object_from_servant (servant);
- g_signal_emit (GTK_OBJECT (bonobo_object), signals[SHOW_SETTINGS], 0);
+ g_signal_emit (bonobo_object, signals[SHOW_SETTINGS], 0);
}