diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2015-03-08 10:56:58 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2015-03-08 10:56:58 +0100 |
commit | a98c83571664d21ebad093f7c3859349c193f135 (patch) | |
tree | d96f2064dbb0131e88d55cdc6afc1063692bc9e9 /src/plugins | |
parent | 148a571dced7e4677ea5154c4c3f2c7fbe358087 (diff) | |
download | weechat-a98c83571664d21ebad093f7c3859349c193f135.zip |
javascript: fix compilation with old V8 lib
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/javascript/weechat-js.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/javascript/weechat-js.cpp b/src/plugins/javascript/weechat-js.cpp index 0ca73d8a5..c1df7bea6 100644 --- a/src/plugins/javascript/weechat-js.cpp +++ b/src/plugins/javascript/weechat-js.cpp @@ -132,7 +132,7 @@ weechat_js_object_to_hashtable (Handle<Object> obj, if (!hashtable) return NULL; - keys = obj->GetOwnPropertyNames(); + keys = obj->GetPropertyNames(); for (i = 0; i < keys->Length(); i++) { key = keys->Get(i); |