]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
Replaced deprecated # syntax with new owned syntax
authorSebastian Pölsterl <sebp@k-d-w.org>
Tue, 5 May 2009 16:20:44 +0000 (18:20 +0200)
committerSebastian Pölsterl <sebp@k-d-w.org>
Tue, 5 May 2009 16:20:44 +0000 (18:20 +0200)
vapi/sqlite3.vapi

index 2966fa867ca1e7e04a063793e8a9362b0f2aae4f..ecff04c390f0ffb6d9a4bf27a6d7a4a03a660be7 100644 (file)
@@ -179,7 +179,7 @@ namespace Sqlite {
                public int bind_int (int index, int value);
                public int bind_int64 (int index, int64 value);
                public int bind_null (int index);
-               public int bind_text (int index, string# value, int n = -1, GLib.DestroyNotify destroy_notify = GLib.g_free);
+               public int bind_text (int index, owned string value, int n = -1, GLib.DestroyNotify destroy_notify = GLib.g_free);
                public int bind_value (int index, Value value);
                public int bind_zeroblob (int index, int n);
                public void* column_blob (int col);