changeset 2054:466cf00f409f

Fixed swapped parameters in web_html_result in the test program. These parameters were not used, but name them correctly for clarity.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Mon, 02 Dec 2019 09:06:53 +0000
parents 026f033ac1c1
children 53523298c7c7
files dwtest.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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");