Updated makensisw with new my_strstr by Kickik

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@927 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
rainwater 2002-09-05 16:24:43 +00:00
parent 5275f4c2ca
commit a6a87bfc76
2 changed files with 8 additions and 2 deletions

View file

@ -349,13 +349,17 @@ BOOL CALLBACK AboutProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam) {
SetDlgItemText(hwndDlg,IDC_ABOUTVERSION,NSISW_VERSION);
SetDlgItemText(hwndDlg,IDC_ABOUTCOPY,COPYRIGHT);
SetDlgItemText(hwndDlg,IDC_ABOUTPORTIONS,CONTRIBUTOR);
break;
}
case WM_CLOSE:
EndDialog(hwndDlg, TRUE);
break;
case WM_COMMAND:
{
switch (LOWORD(wParam)) {
case IDOK: {
case WM_CLOSE:
case IDOK:
EndDialog(hwndDlg, TRUE);
}
}
}
}