]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
gtk4: Specify sentinel for GtkAcessible methods
authorNiels De Graef <nielsdg@redhat.com>
Thu, 3 Feb 2022 10:23:33 +0000 (11:23 +0100)
committerRico Tzschichholz <ricotz@ubuntu.com>
Mon, 14 Feb 2022 13:55:04 +0000 (14:55 +0100)
vapi/gtk4.vapi
vapi/metadata/Gtk-4.0.metadata

index 41af93532e3aa932e2f2aa95dc50633542ffcb19..96121cceed133a9a8ccdb4f33ffc5c883826f274 100644 (file)
@@ -12637,10 +12637,13 @@ namespace Gtk {
                public void reset_property (Gtk.AccessibleProperty property);
                public void reset_relation (Gtk.AccessibleRelation relation);
                public void reset_state (Gtk.AccessibleState state);
+               [CCode (sentinel = "-1")]
                public void update_property (...);
                public void update_property_value ([CCode (array_length_cname = "n_properties", array_length_pos = 0.5)] Gtk.AccessibleProperty[] properties, [CCode (array_length_cname = "n_properties", array_length_pos = 0.5)] GLib.Value[] values);
+               [CCode (sentinel = "-1")]
                public void update_relation (...);
                public void update_relation_value ([CCode (array_length_cname = "n_relations", array_length_pos = 0.5)] Gtk.AccessibleRelation[] relations, [CCode (array_length_cname = "n_relations", array_length_pos = 0.5)] GLib.Value[] values);
+               [CCode (sentinel = "-1")]
                public void update_state (...);
                public void update_state_value ([CCode (array_length_cname = "n_states", array_length_pos = 0.5)] Gtk.AccessibleState[] states, [CCode (array_length_cname = "n_states", array_length_pos = 0.5)] GLib.Value[] values);
                [NoAccessorMethod]
index 8ce47784edd990a8bf4689b78d842ee2016fb4cf..d056725d40ca9e63fc3779cf690840c3411d5804 100644 (file)
@@ -79,7 +79,9 @@ ShortcutTrigger
 // G-I cannot handle variadic functions
 *.*_valist skip=false
 Accessible
-  .* skip=false
+  .update_property skip=false sentinel="-1"
+  .update_relation skip=false sentinel="-1"
+  .update_state skip=false sentinel="-1"
 BuilderCScope
   .* skip=false
 CellArea