summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2008-11-17 16:52:28 +0000
committerJürg Billeter <juergbi@src.gnome.org>2008-11-17 16:52:28 +0000
commit5b1e48e50ee4c27fbdacd4a4f1f3317dc0f6cda7 (patch)
treed57bbdb465f5ad53709dee15da6d6175d3923c71
parent6dd749cccead2fff31aa4c833b99f75c623d985c (diff)
downloadvala-5b1e48e50ee4c27fbdacd4a4f1f3317dc0f6cda7.tar.gz
Fix g_queue_*_nth bindings, patch by John Carr
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
-rw-r--r--ChangeLog6
-rw-r--r--THANKS1
-rw-r--r--vapi/glib-2.0.vapi6
3 files changed, 10 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index b9d860705..adbd4194f 100644
--- 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 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);