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/row.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/row.vala')
-rw-r--r-- | qlite/src/row.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qlite/src/row.vala b/qlite/src/row.vala index 60c7b666..96762be3 100644 --- a/qlite/src/row.vala +++ b/qlite/src/row.vala @@ -8,7 +8,7 @@ public class Row { private Map<string, long> int_map = new HashMap<string, long>(); private Map<string, double?> real_map = new HashMap<string, double?>(); - public Row(Statement stmt) { + internal Row(Statement stmt) { for (int i = 0; i < stmt.column_count(); i++) { switch(stmt.column_type(i)) { case TEXT: |