From: Jürg Billeter Date: Sat, 31 May 2008 11:36:56 +0000 (+0000) Subject: Nullable fixes, patch by Nicolas Joseph, fixes bug 535616 X-Git-Tag: VALA_0_3_3~43 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bd99a0ffd01f0f79e9a1ba15b9ca302c142e9f11;p=platform%2Fupstream%2Fvala.git Nullable fixes, patch by Nicolas Joseph, fixes bug 535616 2008-05-31 Jürg Billeter * vapi/packages/gtksourceview-2.0/: Nullable fixes, patch by Nicolas Joseph, fixes bug 535616 * vapi/gtksourceview-2.0.vapi: regenerated svn path=/trunk/; revision=1515 --- diff --git a/ChangeLog b/ChangeLog index 91a9f04..58a947c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,13 @@ 2008-05-31 Jürg Billeter + * vapi/packages/gtksourceview-2.0/: + + Nullable fixes, patch by Nicolas Joseph, fixes bug 535616 + + * vapi/gtksourceview-2.0.vapi: regenerated + +2008-05-31 Jürg Billeter + * vala/valaclass.vala: * vala/valainterface.vala: diff --git a/vapi/gtksourceview-2.0.vapi b/vapi/gtksourceview-2.0.vapi index a5e9185..ddf1d78 100644 --- a/vapi/gtksourceview-2.0.vapi +++ b/vapi/gtksourceview-2.0.vapi @@ -9,7 +9,7 @@ namespace Gtk { AFTER, ALWAYS } - [CCode (cprefix = "GTK_SOURCE_SEARCH_", has_type_id = "0", cheader_filename = "gtksourceview/gtksourceview.h")] + [CCode (cprefix = "GTK_SOURCE_SEARCH_", has_type_id = "0", cheader_filename = "gtksourceview/gtksourceiter.h")] [Flags] public enum SourceSearchFlags { VISIBLE_ONLY, @@ -246,7 +246,7 @@ namespace Gtk { public virtual signal void undo (); } [CCode (cheader_filename = "gtksourceview/gtksourceview.h")] - public static bool source_iter_backward_search (Gtk.TextIter iter, string str, Gtk.SourceSearchFlags flags, Gtk.TextIter match_start, Gtk.TextIter match_end, Gtk.TextIter limit); + public static bool source_iter_backward_search (Gtk.TextIter iter, string str, Gtk.SourceSearchFlags flags, Gtk.TextIter? match_start, Gtk.TextIter? match_end, Gtk.TextIter? limit); [CCode (cheader_filename = "gtksourceview/gtksourceview.h")] - public static bool source_iter_forward_search (Gtk.TextIter iter, string str, Gtk.SourceSearchFlags flags, Gtk.TextIter match_start, Gtk.TextIter match_end, Gtk.TextIter limit); + public static bool source_iter_forward_search (Gtk.TextIter iter, string str, Gtk.SourceSearchFlags flags, Gtk.TextIter? match_start, Gtk.TextIter? match_end, Gtk.TextIter? limit); } diff --git a/vapi/packages/gtksourceview-2.0/gtksourceview-2.0.metadata b/vapi/packages/gtksourceview-2.0/gtksourceview-2.0.metadata index e8050a0..eb9147f 100644 --- a/vapi/packages/gtksourceview-2.0/gtksourceview-2.0.metadata +++ b/vapi/packages/gtksourceview-2.0/gtksourceview-2.0.metadata @@ -1,6 +1,12 @@ Gtk cheader_filename="gtksourceview/gtksourceview.h" gtk_source_buffer_can_redo hidden="1" gtk_source_buffer_can_undo hidden="1" +gtk_source_iter_backward_search.match_start nullable="1" +gtk_source_iter_backward_search.match_end nullable="1" +gtk_source_iter_backward_search.limit nullable="1" +gtk_source_iter_forward_search.match_start nullable="1" +gtk_source_iter_forward_search.match_end nullable="1" +gtk_source_iter_forward_search.limit nullable="1" GtkSourceBuffer::highlight_updated hidden="1" GtkSourceBuffer::marker_updated hidden="1" GtkSourceContextData hidden="1" @@ -8,6 +14,8 @@ GtkSourceContextEngine hidden="1" GtkSourceContextReplace hidden="1" GtkSourceEngine hidden="1" GtkSourceLanguageManager cheader_filename="gtksourceview/gtksourcelanguagemanager.h" +GtkSourceSearchFlags cheader_filename="gtksourceview/gtksourceiter.h" GtkSourceStyleSchemeManager cheader_filename="gtksourceview/gtksourcestyleschemamanager.h" GtkTextRegion hidden="1" GtkTextRegionIterator hidden="1" +