VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2016-10-13 22:51:43 +0200
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2016-10-17 18:40:35 +0200
commit2cfb896827304e1e342e767d3e38d1942aaced4b (patch)
tree24131845b646ee6f27d5e603a9ab3c204c605d18 /src
parentea2d8ded53e59c630df91637219f91c1e0227a79 (diff)
downloadVeraCrypt-2cfb896827304e1e342e767d3e38d1942aaced4b.tar.gz
VeraCrypt-2cfb896827304e1e342e767d3e38d1942aaced4b.zip
Linux/MacOSX: correctly display Kuznyechik help page when link clicked. Remove Gost89 online help references since it was removed.
Diffstat (limited to 'src')
-rw-r--r--src/Main/Forms/EncryptionOptionsWizardPage.cpp2
-rw-r--r--src/Main/GraphicUserInterface.cpp6
2 files changed, 1 insertions, 7 deletions
diff --git a/src/Main/Forms/EncryptionOptionsWizardPage.cpp b/src/Main/Forms/EncryptionOptionsWizardPage.cpp
index f7216b80..c36c7ff9 100644
--- a/src/Main/Forms/EncryptionOptionsWizardPage.cpp
+++ b/src/Main/Forms/EncryptionOptionsWizardPage.cpp
@@ -80,8 +80,6 @@ namespace VeraCrypt
EncryptionAlgorithmStaticText->SetLabel (LangString["TWOFISH_HELP"]);
else if (typeid (*ea) == typeid (Camellia))
EncryptionAlgorithmStaticText->SetLabel (LangString["CAMELLIA_HELP"]);
- else if (typeid (*ea) == typeid (GOST89))
- EncryptionAlgorithmStaticText->SetLabel (LangString["GOST89_HELP"]);
else if (typeid (*ea) == typeid (Kuznyechik))
EncryptionAlgorithmStaticText->SetLabel (LangString["KUZNYECHIK_HELP"]);
else
diff --git a/src/Main/GraphicUserInterface.cpp b/src/Main/GraphicUserInterface.cpp
index 77a9524d..9ff259c5 100644
--- a/src/Main/GraphicUserInterface.cpp
+++ b/src/Main/GraphicUserInterface.cpp
@@ -1163,11 +1163,7 @@ namespace VeraCrypt
{
url = L"https://veracrypt.codeplex.com/wikipage?title=Camellia";
}
- else if (linkId == L"GOST89")
- {
- url = L"https://veracrypt.codeplex.com/wikipage?title=GOST89";
- }
- else if (linkId == L"Kuznyechik")
+ else if (linkId == L"kuznyechik")
{
url = L"https://veracrypt.codeplex.com/wikipage?title=Kuznyechik";
}