]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
gtk+-*.0: Fix iter parameter of TextBuffer.backspace() 7b2e66e1272d4f9f89664ab0ea328d6dea2d5f6d 87/head
authorRico Tzschichholz <ricotz@ubuntu.com>
Tue, 29 Oct 2019 09:51:52 +0000 (10:51 +0100)
committerRico Tzschichholz <ricotz@ubuntu.com>
Tue, 29 Oct 2019 09:51:52 +0000 (10:51 +0100)
vapi/gtk+-2.0.vapi
vapi/gtk+-3.0.vapi
vapi/gtk4.vapi
vapi/metadata/Gtk-3.0.metadata
vapi/metadata/Gtk-4.0.metadata
vapi/packages/gtk+-2.0/gtk+-2.0.metadata

index 6d8badce262816437f95d468f77f35d787bbf9f0..0d70a74e7d5f973866c2ee17d00c0bbb7e5095aa 100644 (file)
@@ -4396,7 +4396,7 @@ namespace Gtk {
                public void add_mark (Gtk.TextMark mark, Gtk.TextIter where);
                public void add_selection_clipboard (Gtk.Clipboard clipboard);
                public void apply_tag_by_name (string name, Gtk.TextIter start, Gtk.TextIter end);
-               public bool backspace (Gtk.TextIter iter, bool interactive, bool default_editable);
+               public bool backspace (ref Gtk.TextIter iter, bool interactive, bool default_editable);
                public void copy_clipboard (Gtk.Clipboard clipboard);
                public unowned Gtk.TextChildAnchor create_child_anchor (Gtk.TextIter iter);
                public unowned Gtk.TextMark create_mark (string? mark_name, Gtk.TextIter where, bool left_gravity);
index 39d8325d9549a0047bb468494bfb54bfbf838329..768a9890ab5355669992971d5462ca24285f0bfc 100644 (file)
@@ -7851,7 +7851,7 @@ namespace Gtk {
                public void add_selection_clipboard (Gtk.Clipboard clipboard);
                public void apply_tag_by_name (string name, Gtk.TextIter start, Gtk.TextIter end);
                [Version (since = "2.6")]
-               public bool backspace (Gtk.TextIter iter, bool interactive, bool default_editable);
+               public bool backspace (ref Gtk.TextIter iter, bool interactive, bool default_editable);
                public void copy_clipboard (Gtk.Clipboard clipboard);
                public unowned Gtk.TextChildAnchor create_child_anchor (Gtk.TextIter iter);
                public unowned Gtk.TextMark create_mark (string? mark_name, Gtk.TextIter where, bool left_gravity);
index 91ac6bf4386c772b68ac8dff4276c04d5bc6b225..82e8fb2a8dd77eae5ec6a90d0419f00fa6aa0039 100644 (file)
@@ -10901,7 +10901,7 @@ namespace Gtk {
                public void add_mark (Gtk.TextMark mark, Gtk.TextIter where);
                public void add_selection_clipboard (Gdk.Clipboard clipboard);
                public void apply_tag_by_name (string name, Gtk.TextIter start, Gtk.TextIter end);
-               public bool backspace (Gtk.TextIter iter, bool interactive, bool default_editable);
+               public bool backspace (ref Gtk.TextIter iter, bool interactive, bool default_editable);
                public void copy_clipboard (Gdk.Clipboard clipboard);
                public unowned Gtk.TextChildAnchor create_child_anchor (Gtk.TextIter iter);
                public unowned Gtk.TextMark create_mark (string? mark_name, Gtk.TextIter where, bool left_gravity);
index afabbe6132558eb52eaa9275f2d133d2138244ca..b115e326d0aa005ec7e72afa957c97345407b6ee 100644 (file)
@@ -528,6 +528,7 @@ StyleProperties
   .register_property skip=false
   .register_property.parse_func nullable
 TextBuffer
+  .backspace.iter ref
   .delete.start ref
   .delete.end ref
   .delete_interactive.start_iter ref
index b43896b5a3ca5a399e84b2f37453ddbde491c90a..54e9b36daf4a774e4b40138a3f0d13204407a517 100644 (file)
@@ -287,6 +287,7 @@ Snapshot
 render_* parent="Gtk.StyleContext"
 render_* symbol_type="method" instance_idx=0
 TextBuffer
+  .backspace.iter ref
   .delete.start ref
   .delete.end ref
   .delete_interactive.start_iter ref
index e43f08d48794ce4c726d03be08dc52306c8c97f7..578f730f976094c22030c5e5b5288eb83f4508c8 100644 (file)
@@ -755,6 +755,7 @@ GtkTextAppearance is_value_type="1"
 GtkTextAppearance.pad* hidden="1"
 GtkTextAttributes.appearance weak="0"
 GtkTextAttributes.language weak="0"
+gtk_text_buffer_backspace.iter is_ref="1"
 gtk_text_buffer_delete.start is_ref="1"
 gtk_text_buffer_delete.end is_ref="1"
 gtk_text_buffer_delete_interactive.start_iter is_ref="1"