]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
Fix g_queue_*_nth bindings, patch by John Carr
authorJürg Billeter <j@bitron.ch>
Mon, 17 Nov 2008 16:52:28 +0000 (16:52 +0000)
committerJürg Billeter <juergbi@src.gnome.org>
Mon, 17 Nov 2008 16:52:28 +0000 (16:52 +0000)
2008-11-17  Jürg Billeter  <j@bitron.ch>

* vapi/glib-2.0.vapi:

Fix g_queue_*_nth bindings, patch by John Carr

svn path=/trunk/; revision=2024

ChangeLog
THANKS
vapi/glib-2.0.vapi

index b9d86070552aa056888deb37e72bb2f421beb453..adbd4194f2aa35f25f09bfed2b3ae68ceb1b692d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-11-17  Jürg Billeter  <j@bitron.ch>
+
+       * vapi/glib-2.0.vapi:
+
+       Fix g_queue_*_nth bindings, patch by John Carr
+
 2008-11-14  Jürg Billeter  <j@bitron.ch>
 
        * vala/valasemanticanalyzer.vala:
diff --git a/THANKS b/THANKS
index 8b3b407d868794a1e92aa2f69dc57aec6673efac..810b92b5b338184be5c6597534147a2948098f7a 100644 (file)
--- 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
index 25348958ff7110d5c7614bfc9bc306ad481719c9..f6f0de121bb908fd9b8f6fdb3dd9444ecbde90cf 100644 (file)
@@ -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);