diff options
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | gir/glib-2.0.c | 11 |
2 files changed, 19 insertions, 1 deletions
@@ -1,7 +1,14 @@ +2009-01-03 Andreas Rottmann <a.rottmann@gmx.at> + + Bug 566404 – Annotations for GLib + + * gir/glib-2.0.c: Added allow-none annotations for g_thread_init() + and g_main_loop_new(). + 2009-01-12 Johan Dahlin <jdahlin@async.com.br> Bug 566419 – Element type of arrays not properly handled in all cases - + * giscanner/annotationparser.py: * tests/scanner/annotation-1.0-expected.gir: * tests/scanner/annotation-1.0-expected.tgir: diff --git a/gir/glib-2.0.c b/gir/glib-2.0.c index 87b6e844..f41b939d 100644 --- a/gir/glib-2.0.c +++ b/gir/glib-2.0.c @@ -9,3 +9,14 @@ * Return value: (transfer full): */ +/** +* g_thread_init: +* @vtable: (allow-none): +*/ + +/** + * g_main_loop_new: + * @context: (allow-none): + */ + + |