From: Simon Tatham Date: Sat, 20 Feb 1999 18:12:47 +0000 (+0000) Subject: Use different window procedures for the About box and the Licence box. X-Git-Tag: r8855-g4f798d~3212 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=fda79edfd98603a0c0d0f925748fafa939643438;p=PuTTY_svn.git Use different window procedures for the About box and the Licence box. Should prevent the version string masking part of the licence text ;-) git-svn-id: http://svn.tartarus.org/sgt/putty@51 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/windlg.c b/windlg.c index b3bfcbff..306ee4ff 100644 --- a/windlg.c +++ b/windlg.c @@ -357,6 +357,27 @@ static int CALLBACK LogProc (HWND hwnd, UINT msg, return 0; } +static int CALLBACK LicenceProc (HWND hwnd, UINT msg, + WPARAM wParam, LPARAM lParam) { + switch (msg) { + case WM_INITDIALOG: + return 1; + case WM_COMMAND: + switch (LOWORD(wParam)) { + case IDOK: + abtbox = NULL; + DestroyWindow (hwnd); + return 0; + } + return 0; + case WM_CLOSE: + abtbox = NULL; + DestroyWindow (hwnd); + return 0; + } + return 0; +} + static int CALLBACK AboutProc (HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) { switch (msg) { @@ -377,7 +398,7 @@ static int CALLBACK AboutProc (HWND hwnd, UINT msg, case IDA_LICENCE: EnableWindow(hwnd, 0); DialogBox (hinst, MAKEINTRESOURCE(IDD_LICENCEBOX), - NULL, AboutProc); + NULL, LicenceProc); EnableWindow(hwnd, 1); return 0; }