Commit c04f66a5 authored by Hugh McMaster's avatar Hugh McMaster Committed by Alexandre Julliard

regedit: Allow handling of return values from listview notification messages.

parent fe38c9ab
......@@ -472,8 +472,7 @@ LRESULT CALLBACK ChildWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lPa
return 0; /* goto def; */
}
} else if ((int)wParam == LIST_WINDOW && g_pChildWnd != NULL) {
if (!SendMessageW(g_pChildWnd->hListWnd, WM_NOTIFY_REFLECT, wParam, lParam))
goto def;
return SendMessageW(g_pChildWnd->hListWnd, WM_NOTIFY_REFLECT, wParam, lParam);
}
break;
......
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