Added link to developer site

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1359 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
rainwater 2002-10-09 17:38:24 +00:00
parent 8b94e4124e
commit 60e5d6cb1b
5 changed files with 12 additions and 3 deletions

View file

@ -230,6 +230,11 @@ BOOL CALLBACK DialogProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam) {
ShellExecute(g_hwnd,"open",NSIS_URL,NULL,NULL,SW_SHOWNORMAL);
return TRUE;
}
case IDM_NSISDEV:
{
ShellExecute(g_hwnd,"open",NSIS_DEV,NULL,NULL,SW_SHOWNORMAL);
return TRUE;
}
case IDM_SELECTALL:
{
SendDlgItemMessage(g_hwnd, IDC_LOGWIN, EM_SETSEL, 0, -1);