KeeShare uses only one flag - checks for QuaZip

Changed flag for KeeShare to
* enable insecure sharing in all cases
* enable secure sharing if QuaZip was found
This commit is contained in:
Christian Kieschnick 2019-01-04 09:33:00 +01:00
parent 3d02013513
commit 080b02e9d5
3 changed files with 20 additions and 18 deletions

View file

@ -91,9 +91,9 @@ AboutDialog::AboutDialog(QWidget* parent)
#if defined(WITH_XC_KEESHARE_SECURE) && defined(WITH_XC_KEESHARE_INSECURE)
extensions += "\n- " + tr("KeeShare (secure and insecure sharing)");
#elif defined(WITH_XC_KEESHARE_SECURE)
extensions += "\n- " + tr("KeeShare (secure sharing)");
extensions += "\n- " + tr("KeeShare (only secure sharing)");
#elif defined(WITH_XC_KEESHARE_INSECURE)
extensions += "\n- " + tr("KeeShare (insecure sharing)");
extensions += "\n- " + tr("KeeShare (only insecure sharing)");
#endif
#ifdef WITH_XC_YUBIKEY
extensions += "\n- " + tr("YubiKey");