From b617bf7cc4ac2aa083bcf889816d0479fa353e10 Mon Sep 17 00:00:00 2001 From: hrxi Date: Mon, 20 Mar 2023 02:00:27 +0100 Subject: Make members of `Plugins.Registry` public instead of internal They are being used from outside the library. --- libdino/src/plugin/registry.vala | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'libdino') diff --git a/libdino/src/plugin/registry.vala b/libdino/src/plugin/registry.vala index e2801508..6c0234ca 100644 --- a/libdino/src/plugin/registry.vala +++ b/libdino/src/plugin/registry.vala @@ -3,14 +3,14 @@ using Gee; namespace Dino.Plugins { public class Registry { - internal HashMap encryption_list_entries = new HashMap(); - internal HashMap call_encryption_entries = new HashMap(); - internal ArrayList account_settings_entries = new ArrayList(); - internal ArrayList contact_details_entries = new ArrayList(); - internal Map text_commands = new HashMap(); - internal Gee.List conversation_addition_populators = new ArrayList(); - internal Gee.List notification_populators = new ArrayList(); - internal Gee.Collection conversation_titlebar_entries = new Gee.TreeSet((a, b) => { + public HashMap encryption_list_entries = new HashMap(); + public HashMap call_encryption_entries = new HashMap(); + public ArrayList account_settings_entries = new ArrayList(); + public ArrayList contact_details_entries = new ArrayList(); + public Map text_commands = new HashMap(); + public Gee.List conversation_addition_populators = new ArrayList(); + public Gee.List notification_populators = new ArrayList(); + public Gee.Collection conversation_titlebar_entries = new Gee.TreeSet((a, b) => { return (int)(a.order - b.order); }); public VideoCallPlugin? video_call_plugin; -- cgit v1.2.3-54-g00ecf