diff options
author | Marvin W <git@larma.de> | 2017-03-20 19:27:39 +0100 |
---|---|---|
committer | Marvin W <git@larma.de> | 2017-03-23 16:48:26 +0100 |
commit | ef0483765a0fd567f25b1f0af6df04e8973e5624 (patch) | |
tree | 9288c239217496774710542b922cdd264e0838cc /qlite/src/insert_builder.vala | |
parent | aca6842c490c52b6460b7d9ebd7cc77eec4b97ef (diff) | |
download | dino-ef0483765a0fd567f25b1f0af6df04e8973e5624.tar.gz dino-ef0483765a0fd567f25b1f0af6df04e8973e5624.zip |
Small bug fixes and compatibility with Vala 0.36
Diffstat (limited to 'qlite/src/insert_builder.vala')
-rw-r--r-- | qlite/src/insert_builder.vala | 4 |
1 files changed, 2 insertions, 2 deletions
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++) { |