]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
Nullable fixes, patch by Nicolas Joseph, fixes bug 535616
authorJürg Billeter <j@bitron.ch>
Sat, 31 May 2008 11:36:56 +0000 (11:36 +0000)
committerJürg Billeter <juergbi@src.gnome.org>
Sat, 31 May 2008 11:36:56 +0000 (11:36 +0000)
2008-05-31  Jürg Billeter  <j@bitron.ch>

* 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

ChangeLog
vapi/gtksourceview-2.0.vapi
vapi/packages/gtksourceview-2.0/gtksourceview-2.0.metadata

index 91a9f044240322a2ff71ba069bf866ab59f34aea..58a947c07d7407cdb555db81af69a69925772533 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2008-05-31  Jürg Billeter  <j@bitron.ch>
+
+       * 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  <j@bitron.ch>
 
        * vala/valaclass.vala:
index a5e91856b4607c992c6d1fff049fe81a36526d86..ddf1d7819564e5663c0e4bedad81dcb4dbf1bfdb 100644 (file)
@@ -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);
 }
index e8050a0e2f9a4b9f7f84dfa495502c8cd558359f..eb9147f0215cd64d400045a8b4738f20fc452f12 100644 (file)
@@ -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"
+