mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-29 17:29:20 +00:00
Fix bad JNI deferCallUpdate export
This commit is contained in:
parent
52ec4a646d
commit
fb34c57b2a
2 changed files with 2 additions and 3 deletions
|
|
@ -572,8 +572,7 @@ extern "C" void Java_org_linphone_core_LinphoneCoreImpl_acceptCallUpdate(JNIEnv
|
|||
extern "C" void Java_org_linphone_core_LinphoneCoreImpl_deferCallUpdate(JNIEnv *env,
|
||||
jobject thiz,
|
||||
jlong lc,
|
||||
jlong call,
|
||||
jlong params){
|
||||
jlong call){
|
||||
linphone_core_defer_call_update((LinphoneCore*)lc,(LinphoneCall*)call);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -406,7 +406,7 @@ public interface LinphoneCore {
|
|||
* this method.
|
||||
* @throws LinphoneCoreException
|
||||
*/
|
||||
public void deferCallUpdate(LinphoneCall aCall, LinphoneCallParams params) throws LinphoneCoreException;
|
||||
public void deferCallUpdate(LinphoneCall aCall) throws LinphoneCoreException;
|
||||
|
||||
/**
|
||||
* @return a list of LinphoneCallLog
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue