Commit 07374317 authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

winhlp32: Remove variable keyDelta which is not really used from WINHELP_MainWndProc.

parent 01777ac5
...@@ -1335,7 +1335,6 @@ static LRESULT CALLBACK WINHELP_MainWndProc(HWND hWnd, UINT msg, WPARAM wParam, ...@@ -1335,7 +1335,6 @@ static LRESULT CALLBACK WINHELP_MainWndProc(HWND hWnd, UINT msg, WPARAM wParam,
{ {
WINHELP_WINDOW *win; WINHELP_WINDOW *win;
WINHELP_BUTTON *button; WINHELP_BUTTON *button;
INT keyDelta;
HWND hTextWnd; HWND hTextWnd;
LRESULT ret; LRESULT ret;
...@@ -1449,7 +1448,6 @@ static LRESULT CALLBACK WINHELP_MainWndProc(HWND hWnd, UINT msg, WPARAM wParam, ...@@ -1449,7 +1448,6 @@ static LRESULT CALLBACK WINHELP_MainWndProc(HWND hWnd, UINT msg, WPARAM wParam,
break; break;
case WM_KEYDOWN: case WM_KEYDOWN:
keyDelta = 0;
win = (WINHELP_WINDOW*) GetWindowLongPtr(hWnd, 0); win = (WINHELP_WINDOW*) GetWindowLongPtr(hWnd, 0);
hTextWnd = GetDlgItem(win->hMainWnd, CTL_ID_TEXT); hTextWnd = GetDlgItem(win->hMainWnd, CTL_ID_TEXT);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment