aboutsummaryrefslogtreecommitdiffstats
path: root/my-evolution/e-summary-offline-handler.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2002-11-15 01:59:52 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2002-11-15 01:59:52 +0800
commit74b947cdfcc362f5d7709b97d4289b095b724d9a (patch)
tree59f3f578b906ca9a4893e226b0b35dd048d1435f /my-evolution/e-summary-offline-handler.c
parent792733a3c6a6a90b6c3535aa28a0041a354bdf56 (diff)
downloadgsoc2013-evolution-74b947cdfcc362f5d7709b97d4289b095b724d9a.tar
gsoc2013-evolution-74b947cdfcc362f5d7709b97d4289b095b724d9a.tar.gz
gsoc2013-evolution-74b947cdfcc362f5d7709b97d4289b095b724d9a.tar.bz2
gsoc2013-evolution-74b947cdfcc362f5d7709b97d4289b095b724d9a.tar.lz
gsoc2013-evolution-74b947cdfcc362f5d7709b97d4289b095b724d9a.tar.xz
gsoc2013-evolution-74b947cdfcc362f5d7709b97d4289b095b724d9a.tar.zst
gsoc2013-evolution-74b947cdfcc362f5d7709b97d4289b095b724d9a.zip
Replaced all gtk_signal_connect() calls with g_signal_connect() ones.
* e-summary-calendar.c: Replaced all gtk_signal_connect() calls with g_signal_connect() ones. * e-summary-mail.c: Likewise. * e-summary-offline-handler.c: Likewise. * e-summary-preferences.c: Likewise. * e-summary-shown.c: Likewise. * e-summary-tasks.c: Likewise. * e-summary.c: Likewise. svn path=/trunk/; revision=18754
Diffstat (limited to 'my-evolution/e-summary-offline-handler.c')
-rw-r--r--my-evolution/e-summary-offline-handler.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/my-evolution/e-summary-offline-handler.c b/my-evolution/e-summary-offline-handler.c
index 270f4e90ee..c42593522c 100644
--- a/my-evolution/e-summary-offline-handler.c
+++ b/my-evolution/e-summary-offline-handler.c
@@ -280,8 +280,7 @@ e_summary_offline_handler_add_summary (ESummaryOfflineHandler *handler,
handler->priv->summaries = g_slist_prepend (handler->priv->summaries,
summary);
- gtk_signal_connect (GTK_OBJECT (summary), "destroy",
- GTK_SIGNAL_FUNC (summary_destroy_callback), handler);
+ g_signal_connect (summary, "destroy", G_CALLBACK (summary_destroy_callback), handler);
}
BONOBO_X_TYPE_FUNC_FULL (ESummaryOfflineHandler, GNOME_Evolution_Offline, PARENT_TYPE, e_summary_offline_handler);