From ef0483765a0fd567f25b1f0af6df04e8973e5624 Mon Sep 17 00:00:00 2001 From: Marvin W Date: Mon, 20 Mar 2017 19:27:39 +0100 Subject: Small bug fixes and compatibility with Vala 0.36 --- qlite/src/insert_builder.vala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'qlite/src/insert_builder.vala') diff --git a/qlite/src/insert_builder.vala b/qlite/src/insert_builder.vala index c1c17123..51030294 100644 --- a/qlite/src/insert_builder.vala +++ b/qlite/src/insert_builder.vala @@ -15,7 +15,7 @@ public class InsertBuilder : StatementBuilder { // VALUES [...] private StatementBuilder.Field[] fields; - protected InsertBuilder(Database db) { + internal InsertBuilder(Database db) { base(db); } @@ -69,7 +69,7 @@ public class InsertBuilder : StatementBuilder { return this; } - public override Statement prepare() throws DatabaseError { + internal override Statement prepare() throws DatabaseError { string fields_text = ""; string value_qs = ""; for (int i = 0; i < fields.length; i++) { -- cgit v1.2.3-54-g00ecf