]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
gtksourceview-2.0: Fix gtk_source_completion_proposal_get_* bindings
authorJürg Billeter <j@bitron.ch>
Wed, 29 Dec 2010 19:58:18 +0000 (20:58 +0100)
committerJürg Billeter <j@bitron.ch>
Sat, 22 Jan 2011 09:58:11 +0000 (10:58 +0100)
vapi/gtksourceview-2.0.vapi
vapi/packages/gtksourceview-2.0/gtksourceview-2.0.metadata

index 18212bbd67cf8b0619a902497a1e52c9ef8b9de4..3fddaaf419ddf3e3b14fe7529f6a7dfd4aa9bfc2 100644 (file)
@@ -416,10 +416,10 @@ namespace Gtk {
        public interface SourceCompletionProposal : GLib.Object {
                public abstract bool equal (Gtk.SourceCompletionProposal other);
                public abstract unowned Gdk.Pixbuf get_icon ();
-               public abstract unowned string get_info ();
-               public abstract unowned string get_label ();
-               public abstract unowned string get_markup ();
-               public abstract unowned string get_text ();
+               public abstract string get_info ();
+               public abstract string get_label ();
+               public abstract string get_markup ();
+               public abstract string get_text ();
                public abstract uint hash ();
                [HasEmitter]
                public signal void changed ();
@@ -501,9 +501,9 @@ namespace Gtk {
        [CCode (cheader_filename = "gtksourceview/gtksourceview.h")]
        public delegate unowned string SourceViewMarkTooltipFunc (Gtk.SourceMark mark);
        [CCode (cheader_filename = "gtksourceview/gtksourceview.h")]
-       public extern const string SOURCE_COMPLETION_CAPABILITY_AUTOMATIC;
+       public const string SOURCE_COMPLETION_CAPABILITY_AUTOMATIC;
        [CCode (cheader_filename = "gtksourceview/gtksourceview.h")]
-       public extern const string SOURCE_COMPLETION_CAPABILITY_INTERACTIVE;
+       public const string SOURCE_COMPLETION_CAPABILITY_INTERACTIVE;
        [CCode (cheader_filename = "gtksourceview/gtksourceview.h")]
        public static bool source_iter_backward_search (Gtk.TextIter iter, string str, Gtk.SourceSearchFlags flags, out Gtk.TextIter match_start, out Gtk.TextIter match_end, Gtk.TextIter? limit);
        [CCode (cheader_filename = "gtksourceview/gtksourceview.h")]
index 4559529c58667bf141335387ee9db320f26000bd..159bfd2141f558d38f13fcda2fc04ba2c914666a 100644 (file)
@@ -22,6 +22,10 @@ gtk_source_completion_provider_get_name transfer_ownership="1"
 gtk_source_completion_provider_get_info_widget nullable="1"
 GtkSourceCompletionProposal::changed has_emitter="1"
 GtkSourceCompletionProposal::show has_emitter="1"
+gtk_source_completion_proposal_get_info transfer_ownership="1"
+gtk_source_completion_proposal_get_label transfer_ownership="1"
+gtk_source_completion_proposal_get_markup transfer_ownership="1"
+gtk_source_completion_proposal_get_text transfer_ownership="1"
 GtkSourceContextData hidden="1"
 GtkSourceContextEngine hidden="1"
 GtkSourceContextReplace hidden="1"