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 --- plugins/openpgp/src/database.vala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/openpgp/src') diff --git a/plugins/openpgp/src/database.vala b/plugins/openpgp/src/database.vala index ac80f79a..7d41db3c 100644 --- a/plugins/openpgp/src/database.vala +++ b/plugins/openpgp/src/database.vala @@ -11,7 +11,7 @@ public class Database : Qlite.Database { public Column account_id = new Column.Integer("account_id") { primary_key = true }; public Column key = new Column.Text("key") { not_null = true }; - protected AccountSetting(Database db) { + internal AccountSetting(Database db) { base(db, "account_setting"); init({account_id, key}); } @@ -21,7 +21,7 @@ public class Database : Qlite.Database { public Column jid = new Column.Text("jid") { primary_key = true }; public Column key = new Column.Text("key") { not_null = true }; - protected ContactKey(Database db) { + internal ContactKey(Database db) { base(db, "contact_key"); init({jid, key}); } -- cgit v1.2.3-54-g00ecf