From: Jürg Billeter Date: Mon, 17 Nov 2008 16:52:28 +0000 (+0000) Subject: Fix g_queue_*_nth bindings, patch by John Carr X-Git-Tag: VALA_0_5_2~87 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5b1e48e50ee4c27fbdacd4a4f1f3317dc0f6cda7;p=thirdparty%2Fvala.git Fix g_queue_*_nth bindings, patch by John Carr 2008-11-17 Jürg Billeter * vapi/glib-2.0.vapi: Fix g_queue_*_nth bindings, patch by John Carr svn path=/trunk/; revision=2024 --- diff --git a/ChangeLog b/ChangeLog index b9d860705..adbd4194f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-11-17 Jürg Billeter + + * vapi/glib-2.0.vapi: + + Fix g_queue_*_nth bindings, patch by John Carr + 2008-11-14 Jürg Billeter * vala/valasemanticanalyzer.vala: diff --git a/THANKS b/THANKS index 8b3b407d8..810b92b5b 100644 --- a/THANKS +++ b/THANKS @@ -37,6 +37,7 @@ Jan Rosczak Jared Moore Jille Timmermans Johannes Schmid +John Carr Juan Carlos Girardi Kyle Ambroff Levi Bard diff --git a/vapi/glib-2.0.vapi b/vapi/glib-2.0.vapi index 25348958f..f6f0de121 100644 --- a/vapi/glib-2.0.vapi +++ b/vapi/glib-2.0.vapi @@ -2790,13 +2790,13 @@ namespace GLib { public void sort (CompareDataFunc compare_func, void* user_data); public void push_head (G# data); public void push_tail (G# data); - public void push_nth (G# data); + public void push_nth (G# data, int n); public G pop_head (); public G pop_tail (); - public G pop_nth (); + public G pop_nth (uint n); public weak G peek_head (); public weak G peek_tail (); - public weak G peek_nth (); + public weak G peek_nth (uint n); public int index (G data); public void remove (G data); public void remove_all (G data);