From 733326b329a42ec38b416c27aab0d40855280860 Mon Sep 17 00:00:00 2001 From: Jeremy Wu Date: Mon, 23 Mar 2020 18:23:40 +1100 Subject: [PATCH] Revert accidental removal of interface methods --- Wox.Core/Configuration/IPortable.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Wox.Core/Configuration/IPortable.cs b/Wox.Core/Configuration/IPortable.cs index a009b076b..b0af43672 100644 --- a/Wox.Core/Configuration/IPortable.cs +++ b/Wox.Core/Configuration/IPortable.cs @@ -3,6 +3,8 @@ namespace Wox.Core.Configuration { public interface IPortable { + void EnablePortableMode(); + void DisablePortableMode(); void RemoveShortcuts(); void RemoveUninstallerEntry(); void CreateShortcuts();