diff options
author | portix <none@none> | 2012-10-23 01:00:42 +0200 |
---|---|---|
committer | portix <none@none> | 2012-10-23 01:00:42 +0200 |
commit | 1bf336e63e1c46a3005d1e4d555d294dd45a9af0 (patch) | |
tree | b55d987a4a31a07701a5f52c6b9fb5ad0dd553ae /src/js.h | |
parent | 371935c5857ff7440f2fd1e29d28c1bd2918e7cf (diff) | |
download | dwb-1bf336e63e1c46a3005d1e4d555d294dd45a9af0.zip |
Fixing element hider issues with webkit-1.10
Diffstat (limited to 'src/js.h')
-rw-r--r-- | src/js.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -30,7 +30,7 @@ void js_set_object_number_property(JSContextRef ctx, JSObjectRef arg, const char char * js_get_string_property(JSContextRef ctx, JSObjectRef arg, const char *name); double js_get_double_property(JSContextRef ctx, JSObjectRef arg, const char *name); JSObjectRef js_create_object(WebKitWebFrame *, const char *); -char * js_call_as_function(WebKitWebFrame *, JSObjectRef, const char *string, const char *args, char **char_ret); +char * js_call_as_function(WebKitWebFrame *, JSObjectRef, const char *string, const char *args, JSType, char **char_ret); JSValueRef js_char_to_value(JSContextRef ctx, const char *text); char * js_value_to_json(JSContextRef ctx, JSValueRef value, size_t limit, JSValueRef *exc); JSValueRef js_execute(JSContextRef ctx, const char *, JSValueRef *exc); |