diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-02-15 23:58:37 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-02-16 00:19:39 +0100 |
commit | 717ffadf931407bb2e5684f3fcdef86b37e8213a (patch) | |
tree | 756b48d0de5d70b35f83ecd053aa2a67288e902f /src | |
parent | 419586d4a223be3c169185c8f116ec9bad889422 (diff) | |
download | VeraCrypt-717ffadf931407bb2e5684f3fcdef86b37e8213a.tar.gz VeraCrypt-717ffadf931407bb2e5684f3fcdef86b37e8213a.zip |
Windows Installer: don't add link to VeraCryptExpander in the desktop.
Diffstat (limited to 'src')
-rw-r--r-- | src/Setup/Setup.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/Setup/Setup.c b/src/Setup/Setup.c index 48b4f717..650ad205 100644 --- a/src/Setup/Setup.c +++ b/src/Setup/Setup.c @@ -1314,14 +1314,6 @@ BOOL DoShortcutsInstall (HWND hwndDlg, char *szDestDir, BOOL bProgGroup, BOOL bD if (CreateLink (szTmp, "", szTmp2) != S_OK)
goto error;
-
- StringCbPrintfA (szTmp, sizeof(szTmp), "%s%s", szDir, "VeraCryptExpander.exe");
- StringCbPrintfA (szTmp2, sizeof(szTmp2), "%s%s", szLinkDir, "\\VeraCryptExpander.lnk");
-
- IconMessage (hwndDlg, szTmp2);
-
- if (CreateLink (szTmp, "", szTmp2) != S_OK)
- goto error;
}
bOK = TRUE;
|