diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2023-09-24 01:41:35 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2023-09-24 01:41:35 +0200 |
commit | 937c5cd5cd57893e85601b472e7d6cfd5ffdc6ab (patch) | |
tree | fc7ad410e8e660a8eebb9eda662d838fdfa5b555 | |
parent | 76c64d49ea96719bf1a5d185053619001b0aa533 (diff) | |
download | VeraCrypt-937c5cd5cd57893e85601b472e7d6cfd5ffdc6ab.tar.gz VeraCrypt-937c5cd5cd57893e85601b472e7d6cfd5ffdc6ab.zip |
Windows: always open online help in case of Setup because local help may be outdated
-rw-r--r-- | src/Common/Dlgcode.c | 6 | ||||
-rw-r--r-- | src/Setup/Wizard.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/src/Common/Dlgcode.c b/src/Common/Dlgcode.c index a81dc984..d9bb776e 100644 --- a/src/Common/Dlgcode.c +++ b/src/Common/Dlgcode.c @@ -11223,8 +11223,14 @@ void Applink (const char *dest) if (buildUrl) { + // in case of setup, always open the online documentation because existing documentation may be outdated +#ifdef SETUP + StringCbPrintfW (url, sizeof (url), L"https://www.veracrypt.fr/en/%s", page); + buildUrl = FALSE; +#else StringCbPrintfW (url, sizeof (url), L"file:///%sdocs/html/en/%s", installDir, page); CorrectURL (url); +#endif } if (IsAdmin ()) diff --git a/src/Setup/Wizard.c b/src/Setup/Wizard.c index 66e24571..3dcb138e 100644 --- a/src/Setup/Wizard.c +++ b/src/Setup/Wizard.c @@ -702,7 +702,7 @@ BOOL CALLBACK PageDialogProc (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPa return 1; case IDC_DISABLE_MEMORY_PROTECTION_HELP: - Applink("memoryprotection") + Applink("memoryprotection"); return 1; case IDC_FILE_TYPE: |