From c245f7e34ae63c83c59996109208fafa971b9dd4 Mon Sep 17 00:00:00 2001 From: hrxi Date: Sat, 1 Jun 2019 17:09:26 +0200 Subject: Fix a couple of typos and double imports --- plugins/openpgp/src/in_file_processor.vala | 2 +- plugins/openpgp/src/plugin.vala | 2 +- plugins/openpgp/src/stream_flag.vala | 3 +-- 3 files changed, 3 insertions(+), 4 deletions(-) (limited to 'plugins/openpgp') diff --git a/plugins/openpgp/src/in_file_processor.vala b/plugins/openpgp/src/in_file_processor.vala index 568315f9..918f824a 100644 --- a/plugins/openpgp/src/in_file_processor.vala +++ b/plugins/openpgp/src/in_file_processor.vala @@ -2,7 +2,7 @@ using Dino.Entities; namespace Dino.Plugins.OpenPgp { -public class InFileProcessor : IncommingFileProcessor, Object { +public class InFileProcessor : IncomingFileProcessor, Object { public bool can_process(FileTransfer file_transfer) { return file_transfer.file_name.has_suffix("pgp") || file_transfer.mime_type == "application/pgp-encrypted"; } diff --git a/plugins/openpgp/src/plugin.vala b/plugins/openpgp/src/plugin.vala index adf2ecc7..1d4f5203 100644 --- a/plugins/openpgp/src/plugin.vala +++ b/plugins/openpgp/src/plugin.vala @@ -30,7 +30,7 @@ public class Plugin : Plugins.RootInterface, Object { Manager.start(app.stream_interactor, db); app.stream_interactor.get_module(FileManager.IDENTITY).add_outgoing_processor(new OutFileProcessor(app.stream_interactor)); - app.stream_interactor.get_module(FileManager.IDENTITY).add_incomming_processor(new InFileProcessor()); + app.stream_interactor.get_module(FileManager.IDENTITY).add_incoming_processor(new InFileProcessor()); internationalize(GETTEXT_PACKAGE, app.search_path_generator.get_locale_path(GETTEXT_PACKAGE, LOCALE_INSTALL_DIR)); } diff --git a/plugins/openpgp/src/stream_flag.vala b/plugins/openpgp/src/stream_flag.vala index 8593fa9d..df598625 100644 --- a/plugins/openpgp/src/stream_flag.vala +++ b/plugins/openpgp/src/stream_flag.vala @@ -1,6 +1,5 @@ using Gee; -using Xmpp; using Xmpp; namespace Dino.Plugins.OpenPgp { @@ -19,4 +18,4 @@ public class Flag : XmppStreamFlag { public override string get_id() { return IDENTITY.id; } } -} \ No newline at end of file +} -- cgit v1.2.3-54-g00ecf