use G_CALLBACK for signal connections.

2005-07-20  Manish Singh  <yosh@gimp.org>

        * tests/refcount/signals.c: use G_CALLBACK for signal connections.
This commit is contained in:
Manish Singh 2005-07-20 20:46:58 +00:00 committed by Manish Singh
parent f4bc0cb520
commit 6394b31435
5 changed files with 19 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2005-07-20 Manish Singh <yosh@gimp.org>
* tests/refcount/signals.c: use G_CALLBACK for signal connections.
2005-07-20 Matthias Clasen <mclasen@redhat.com> 2005-07-20 Matthias Clasen <mclasen@redhat.com>
* glib/gthreadpool.c (g_thread_pool_free): Don't get * glib/gthreadpool.c (g_thread_pool_free): Don't get

View File

@ -1,3 +1,7 @@
2005-07-20 Manish Singh <yosh@gimp.org>
* tests/refcount/signals.c: use G_CALLBACK for signal connections.
2005-07-20 Matthias Clasen <mclasen@redhat.com> 2005-07-20 Matthias Clasen <mclasen@redhat.com>
* glib/gthreadpool.c (g_thread_pool_free): Don't get * glib/gthreadpool.c (g_thread_pool_free): Don't get

View File

@ -1,3 +1,7 @@
2005-07-20 Manish Singh <yosh@gimp.org>
* tests/refcount/signals.c: use G_CALLBACK for signal connections.
2005-07-20 Matthias Clasen <mclasen@redhat.com> 2005-07-20 Matthias Clasen <mclasen@redhat.com>
* glib/gthreadpool.c (g_thread_pool_free): Don't get * glib/gthreadpool.c (g_thread_pool_free): Don't get

View File

@ -1,3 +1,7 @@
2005-07-20 Manish Singh <yosh@gimp.org>
* tests/refcount/signals.c: use G_CALLBACK for signal connections.
2005-07-20 Matthias Clasen <mclasen@redhat.com> 2005-07-20 Matthias Clasen <mclasen@redhat.com>
* glib/gthreadpool.c (g_thread_pool_free): Don't get * glib/gthreadpool.c (g_thread_pool_free): Don't get

View File

@ -244,9 +244,9 @@ main (int argc, char **argv)
test1 = g_object_new (G_TYPE_TEST, NULL); test1 = g_object_new (G_TYPE_TEST, NULL);
test2 = g_object_new (G_TYPE_TEST, NULL); test2 = g_object_new (G_TYPE_TEST, NULL);
g_signal_connect (test1, "notify::test-prop", notify, NULL); g_signal_connect (test1, "notify::test-prop", G_CALLBACK (notify), NULL);
g_signal_connect (test1, "test-signal1", notify, NULL); g_signal_connect (test1, "test-signal1", G_CALLBACK (notify), NULL);
g_signal_connect (test1, "test-signal2", notify, NULL); g_signal_connect (test1, "test-signal2", G_CALLBACK (notify), NULL);
test_threads = g_array_new (FALSE, FALSE, sizeof (GThread *)); test_threads = g_array_new (FALSE, FALSE, sizeof (GThread *));