Module: wine Branch: stable Commit: 5baee68c2964dfda31923fd6a00e281823dfd579 URL: https://source.winehq.org/git/wine.git/?a=commit;h=5baee68c2964dfda31923fd6a...
Author: Hugh McMaster hugh.mcmaster@outlook.com Date: Thu Apr 19 13:21:24 2018 +0000
regedit: Use the correct window class name.
Signed-off-by: Hugh McMaster hugh.mcmaster@outlook.com Signed-off-by: Alexandre Julliard julliard@winehq.org (cherry picked from commit 6bca0abb68016df0fe31a1568cc6f8f744caeb92) Signed-off-by: Michael Stefaniuc mstefani@winehq.org
---
programs/regedit/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/programs/regedit/main.c b/programs/regedit/main.c index 460a951..19d720d 100644 --- a/programs/regedit/main.c +++ b/programs/regedit/main.c @@ -62,7 +62,7 @@ const WCHAR strClipboardFormat[] = {'T','O','D','O',':',' ','S','E','T',' ','C',
#define MAX_LOADSTRING 100 WCHAR szTitle[MAX_LOADSTRING]; -const WCHAR szFrameClass[] = {'R','E','G','E','D','I','T','_','F','R','A','M','E',0}; +const WCHAR szFrameClass[] = {'R','e','g','E','d','i','t','_','R','e','g','E','d','i','t',0}; const WCHAR szChildClass[] = {'R','E','G','E','D','I','T',0};
static BOOL InitInstance(HINSTANCE hInstance, int nCmdShow)