aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/cal-client/client-test.c
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@ximian.com>2002-11-14 04:03:27 +0800
committerFederico Mena Quintero <federico@src.gnome.org>2002-11-14 04:03:27 +0800
commit422f99755f1f214a44dc66791007ce516594c237 (patch)
treede8e4a486af16127ff02c4c08709763a0a5a4bf8 /calendar/cal-client/client-test.c
parent777954dd8ae728870eb9881da9b6de9739b9155f (diff)
downloadgsoc2013-evolution-422f99755f1f214a44dc66791007ce516594c237.tar
gsoc2013-evolution-422f99755f1f214a44dc66791007ce516594c237.tar.gz
gsoc2013-evolution-422f99755f1f214a44dc66791007ce516594c237.tar.bz2
gsoc2013-evolution-422f99755f1f214a44dc66791007ce516594c237.tar.lz
gsoc2013-evolution-422f99755f1f214a44dc66791007ce516594c237.tar.xz
gsoc2013-evolution-422f99755f1f214a44dc66791007ce516594c237.tar.zst
gsoc2013-evolution-422f99755f1f214a44dc66791007ce516594c237.zip
#include <string.h> (obj_removed_cb): Fixed prototype.
2002-11-13 Federico Mena Quintero <federico@ximian.com> * cal-client/cal-query.c: #include <string.h> (obj_removed_cb): Fixed prototype. * cal-client/cal-client.c (get_objects_atomically): Fix use of g_signal_handler_disconnect(). * cal-client/client-test.c (create_client): Add G_CALLBACK casts. svn path=/trunk/; revision=18744
Diffstat (limited to 'calendar/cal-client/client-test.c')
-rw-r--r--calendar/cal-client/client-test.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/calendar/cal-client/client-test.c b/calendar/cal-client/client-test.c
index 312fe1536b..f4cb06b8dd 100644
--- a/calendar/cal-client/client-test.c
+++ b/calendar/cal-client/client-test.c
@@ -187,14 +187,14 @@ create_client (CalClient **client, const char *uri, gboolean only_if_exists)
exit (1);
}
- g_signal_connect (G_OBJECT (*client), "destroy",
- client_destroy_cb,
+ g_signal_connect (*client, "destroy",
+ G_CALLBACK (client_destroy_cb),
NULL);
- g_signal_connect (G_OBJECT (*client), "cal_opened",
+ g_signal_connect (*client, "cal_opened",
G_CALLBACK (cal_opened_cb),
- NULL);
- g_signal_connect (G_OBJECT (*client), "obj_updated",
+ NULL);
+ g_signal_connect (*client, "obj_updated",
G_CALLBACK (obj_updated_cb),
NULL);