[vala] Replaced deprecated # syntax with new owned syntax



commit 71dd86b32a7393c62f93303b637004124ca0287d
Author: Sebastian Pölsterl <sebp k-d-w org>
Date:   Tue May 5 18:20:44 2009 +0200

    Replaced deprecated # syntax with new owned syntax
---
 vapi/sqlite3.vapi |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/vapi/sqlite3.vapi b/vapi/sqlite3.vapi
index 2966fa8..ecff04c 100644
--- a/vapi/sqlite3.vapi
+++ b/vapi/sqlite3.vapi
@@ -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);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]