mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-26 15:36:14 +01:00
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:
parent
f4bc0cb520
commit
6394b31435
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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 *));
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user