diff options
author | fiaxh <git@lightrise.org> | 2021-10-12 16:14:01 +0200 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2021-10-12 17:59:47 +0200 |
commit | 76e425ed2705349b201444e78719896419862b00 (patch) | |
tree | 7a431dca0637ba71c9fca8ad4b0c229ec9ae33d7 /plugins/openpgp | |
parent | 8d8dcf5af67ad89c328e67dc2c3469ef90283d9a (diff) | |
download | dino-76e425ed2705349b201444e78719896419862b00.tar.gz dino-76e425ed2705349b201444e78719896419862b00.zip |
Fix compiler warnings ('assignment .. from incompatible pointer type') by returning non-const after_actions in OrderListener
Diffstat (limited to 'plugins/openpgp')
-rw-r--r-- | plugins/openpgp/src/stream_module.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/openpgp/src/stream_module.vala b/plugins/openpgp/src/stream_module.vala index 447ed5fd..32a77580 100644 --- a/plugins/openpgp/src/stream_module.vala +++ b/plugins/openpgp/src/stream_module.vala @@ -136,7 +136,7 @@ namespace Dino.Plugins.OpenPgp { public class ReceivedPipelineDecryptListener : StanzaListener<MessageStanza> { - private const string[] after_actions_const = {"MODIFY_BODY"}; + private string[] after_actions_const = {"MODIFY_BODY"}; public override string action_group { get { return "ENCRYPT_BODY"; } } public override string[] after_actions { get { return after_actions_const; } } |