From ab681763afb6f92741fea1b435f14bd86c2e2a38 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Sat, 20 Feb 1999 18:12:47 +0000 Subject: [PATCH] Use different window procedures for the About box and the Licence box. Should prevent the version string masking part of the licence text ;-) [originally from svn r51] --- windlg.c | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) 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; } -- 2.45.2