]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
apply changes in the output of vapigen caused by the sentinel attribute
authorMathias Hasselmann <mathias.hasselmann@gmx.de>
Thu, 16 Aug 2007 22:04:33 +0000 (22:04 +0000)
committerMathias Hasselmann <hasselmm@src.gnome.org>
Thu, 16 Aug 2007 22:04:33 +0000 (22:04 +0000)
2007-08-17  Mathias Hasselmann  <mathias.hasselmann@gmx.de>

* vapi/gtk+-2.0.vala: apply changes in the output
of vapigen caused by the sentinel attribute patch

svn path=/trunk/; revision=475

ChangeLog
vapi/gtk+-2.0.vala

index c1e96b3c2ad29b0e62db815021d24912d176f7d2..450d8c4996c9190d0fc473b4b267d11e2d647290 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-08-17  Mathias Hasselmann  <mathias.hasselmann@gmx.de>
+
+       * vapi/gtk+-2.0.vala: apply changes in the output
+       of vapigen caused by the sentinel attribute patch
+
 2007-08-16  Mathias Hasselmann  <mathias.hasselmann@gmx.de>
 
        * gobject/valacodegeneratorinvocationexpression.vala,
index 7b2a9eab29310d9d59da6317cf6538c832248f6a..74ef52be588a15a98adbccbea427151701c67a9d 100644 (file)
@@ -1803,6 +1803,7 @@ namespace Gtk {
                public Dialog ();
                public Dialog.with_buttons (string title, Gtk.Window parent, Gtk.DialogFlags flags, ...);
                public int run ();
+               [CCode (sentinel = "-1")]
                public void set_alternative_button_order (...);
                public void set_alternative_button_order_from_array (int n_params, int new_order);
                public void set_default_response (int response_id);
@@ -2536,6 +2537,7 @@ namespace Gtk {
                public void insert (out Gtk.TreeIter iter, int position);
                public void insert_after (out Gtk.TreeIter iter, out Gtk.TreeIter sibling);
                public void insert_before (out Gtk.TreeIter iter, out Gtk.TreeIter sibling);
+               [CCode (sentinel = "-1")]
                public void insert_with_values (out Gtk.TreeIter iter, int position, ...);
                [NoArrayLength]
                public void insert_with_valuesv (out Gtk.TreeIter iter, int position, int columns, GLib.Value[] values, int n_values);
@@ -2548,6 +2550,7 @@ namespace Gtk {
                public void prepend (out Gtk.TreeIter iter);
                public bool remove (out Gtk.TreeIter iter);
                public void reorder (int new_order);
+               [CCode (sentinel = "-1")]
                public void set (out Gtk.TreeIter iter, ...);
                [NoArrayLength]
                public void set_column_types (int n_types, GLib.Type[] types);
@@ -4214,6 +4217,7 @@ namespace Gtk {
                public void insert (out Gtk.TreeIter iter, out Gtk.TreeIter parent, int position);
                public void insert_after (out Gtk.TreeIter iter, out Gtk.TreeIter parent, out Gtk.TreeIter sibling);
                public void insert_before (out Gtk.TreeIter iter, out Gtk.TreeIter parent, out Gtk.TreeIter sibling);
+               [CCode (sentinel = "-1")]
                public void insert_with_values (out Gtk.TreeIter iter, out Gtk.TreeIter parent, int position, ...);
                [NoArrayLength]
                public void insert_with_valuesv (out Gtk.TreeIter iter, out Gtk.TreeIter parent, int position, int columns, GLib.Value[] values, int n_values);
@@ -4228,6 +4232,7 @@ namespace Gtk {
                public void prepend (out Gtk.TreeIter iter, out Gtk.TreeIter parent);
                public bool remove (out Gtk.TreeIter iter);
                public void reorder (out Gtk.TreeIter parent, int new_order);
+               [CCode (sentinel = "-1")]
                public void set (out Gtk.TreeIter iter, ...);
                [NoArrayLength]
                public void set_column_types (int n_types, GLib.Type[] types);
@@ -5098,6 +5103,7 @@ namespace Gtk {
        [CCode (cheader_filename = "gtk/gtk.h")]
        public interface TreeModel {
                public void @foreach (Gtk.TreeModelForeachFunc func, pointer user_data);
+               [CCode (sentinel = "-1")]
                public void get (out Gtk.TreeIter iter, ...);
                public abstract GLib.Type get_column_type (int index_);
                public abstract Gtk.TreeModelFlags get_flags ();
@@ -5954,6 +5960,7 @@ namespace Gtk {
                public bool is_descendant (Gtk.TreePath ancestor);
                public TreePath ();
                public TreePath.first ();
+               [CCode (sentinel = "-1")]
                public TreePath.from_indices (...);
                public TreePath.from_string (string path);
                public void next ();