aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-folder-list.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2002-11-04 06:08:16 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2002-11-04 06:08:16 +0800
commitede7fcb220b739c4d12775904086afe0df595acd (patch)
treecae8198cf8f57d3e08d13c03538e69a411f8a45c /shell/e-folder-list.c
parent9cbba714fc0eb122c0736b94727b4d2580b9d53c (diff)
downloadgsoc2013-evolution-ede7fcb220b739c4d12775904086afe0df595acd.tar
gsoc2013-evolution-ede7fcb220b739c4d12775904086afe0df595acd.tar.gz
gsoc2013-evolution-ede7fcb220b739c4d12775904086afe0df595acd.tar.bz2
gsoc2013-evolution-ede7fcb220b739c4d12775904086afe0df595acd.tar.lz
gsoc2013-evolution-ede7fcb220b739c4d12775904086afe0df595acd.tar.xz
gsoc2013-evolution-ede7fcb220b739c4d12775904086afe0df595acd.tar.zst
gsoc2013-evolution-ede7fcb220b739c4d12775904086afe0df595acd.zip
Changed all gtk_object_refs()/gtk_object_unrefs() into
* *.c, *.h: Changed all gtk_object_refs()/gtk_object_unrefs() into g_object_refs()/g_object_unrefs() and all gtk_signal_connect_*() into g_signal_connect_*(). [Except for some case where we have gtk_signal_connect_full() or gtk_signal_connect_while_alive() calls that cannot be trivially ported to use the g_signal_* functions, we'll have to fix those later.] * e-splash.c (impl_finalize): Finalize implementation, copied over from impl_destroy. (impl_destroy): Removed. (class_init): Override finalize, not destroy. * e-activity-handler.c: Ported from GtkObject to GObject. * evolution-storage.c: Likewise. * e-corba-shortcuts.c: Likewise. * evolution-session.h: Likewise. * evolution-config-control.c: Likewise. * evolution-shell-component-dnd.c: Likewise. * evolution-shell-component.c: Likewise. * evolution-shell-view.c: Likewise. * evolution-storage-set-view.c: Likewise. * evolution-wizard.c: Likewise. svn path=/trunk/; revision=18513
Diffstat (limited to 'shell/e-folder-list.c')
-rw-r--r--shell/e-folder-list.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/shell/e-folder-list.c b/shell/e-folder-list.c
index 24e00fa907..1c318bad5b 100644
--- a/shell/e-folder-list.c
+++ b/shell/e-folder-list.c
@@ -142,7 +142,7 @@ e_folder_list_destroy (GtkObject *object)
EFolderList *efl = E_FOLDER_LIST (object);
if (efl->priv->gui)
- gtk_object_unref (GTK_OBJECT (efl->priv->gui));
+ g_object_unref (efl->priv->gui);
if (efl->priv->client)
g_object_unref (efl->priv->client);
@@ -436,10 +436,10 @@ e_folder_list_init (EFolderList *efl)
selection_model = e_table_get_selection_model (e_table_scrolled_get_table (efl->priv->scrolled_table));
- gtk_signal_connect (GTK_OBJECT (selection_model), "selection_changed",
- GTK_SIGNAL_FUNC (selection_changed), efl);
- gtk_signal_connect (GTK_OBJECT (selection_model), "cursor_changed",
- GTK_SIGNAL_FUNC (cursor_changed), efl);
+ g_signal_connect (selection_model, "selection_changed",
+ G_CALLBACK (selection_changed), efl);
+ g_signal_connect (selection_model, "cursor_changed",
+ G_CALLBACK (cursor_changed), efl);
efl->priv->possible_types = NULL;
set_frame_label (efl);