# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1575277613 0 # Node ID 466cf00f409f6cd3438e2679f52b82a10f71023e # Parent 026f033ac1c1d2f4fe506bb31c83b07c9f570d19 Fixed swapped parameters in web_html_result in the test program. These parameters were not used, but name them correctly for clarity. diff -r 026f033ac1c1 -r 466cf00f409f dwtest.c --- a/dwtest.c Mon Dec 02 09:00:28 2019 +0000 +++ b/dwtest.c Mon Dec 02 09:06:53 2019 +0000 @@ -1732,7 +1732,7 @@ } /* Handle web javascript result */ -int DWSIGNAL web_html_result(HWND html, int status, char *result, void *user_data, void *script_data) +int DWSIGNAL web_html_result(HWND html, int status, char *result, void *script_data, void *user_data) { dw_messagebox("Javascript Result", DW_MB_OK | (status ? DW_MB_ERROR : DW_MB_INFORMATION), result ? result : "Javascript result is not a string value");