Java: Use correct JNI function when calling Vector.add
This commit is contained in:
parent
fef90b4101
commit
e83a8f4958
|
@ -76,7 +76,7 @@ namespace Glib {
|
||||||
for (auto entry : $1)
|
for (auto entry : $1)
|
||||||
{
|
{
|
||||||
*(CValue **) &value = new CValue(entry);
|
*(CValue **) &value = new CValue(entry);
|
||||||
jenv->CallObjectMethod($result, Vector_add,
|
jenv->CallBooleanMethod($result, Vector_add,
|
||||||
jenv->NewObject(Value, Value_init, value, true));
|
jenv->NewObject(Value, Value_init, value, true));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue