mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
Changed some places where set() were used
This commit is contained in:
@ -22,7 +22,7 @@ namespace NSJSON
|
||||
JSSmart<NSJSBase::CJSArray> jsArr = NSJSBase::CJSContext::createArray(len);
|
||||
for (int i = 0; i < len; i++)
|
||||
{
|
||||
jsArr->set(i, toJS(value[i]).GetPointer());
|
||||
jsArr->set(i, toJS(value[i]));
|
||||
}
|
||||
ret = jsArr->toValue();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user