From 932f6f5387fd3e7fe84d00a30d91d9105d212f42 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Mon, 1 Aug 2022 17:32:40 +0100 Subject: [PATCH] windows/pageant.rc: add missing symbolic constant. The main list box in the Pageant key list window was identified by a numeric control id, even though pageant-rc.h has a nice meaningful macro name for it (and pageant.c uses that). --- windows/pageant.rc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/pageant.rc b/windows/pageant.rc index 5bea40e7..186eb314 100644 --- a/windows/pageant.rc +++ b/windows/pageant.rc @@ -51,7 +51,7 @@ STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU CAPTION "Pageant Key List" FONT 8, "MS Shell Dlg" BEGIN - LISTBOX 100, 10, 10, 420, 155, + LISTBOX IDC_KEYLIST_LISTBOX, 10, 10, 420, 155, LBS_EXTENDEDSEL | LBS_HASSTRINGS | LBS_USETABSTOPS | WS_VSCROLL | WS_TABSTOP PUSHBUTTON "&Add Key", IDC_KEYLIST_ADDKEY, 10, 187, 60, 14 PUSHBUTTON "Add Key (&encrypted)", IDC_KEYLIST_ADDKEY_ENC, 75, 187, 80, 14