forked from mirrors/linphone-iphone
Fixed access to nativePtr in Java wrapper
This commit is contained in:
parent
20cff19fe2
commit
7bee10282c
1 changed files with 1 additions and 1 deletions
|
|
@ -164,7 +164,7 @@ class JavaTranslator(object):
|
|||
methodDict['native_params'] += self.translate_argument(arg, True)
|
||||
methodDict['static_native_params'] += self.translate_argument(arg, True)
|
||||
if type(arg.type) is AbsApi.ClassType:
|
||||
methodDict['native_params_impl'] += '((' + self.translate_type(arg.type) + ')' + self.translate_argument_name(arg.name) + ').nativePtr'
|
||||
methodDict['native_params_impl'] += '((' + self.translate_type(arg.type) + 'Impl)' + self.translate_argument_name(arg.name) + ').nativePtr'
|
||||
elif type(arg.type) is AbsApi.ListType:
|
||||
if type(arg.type.containedTypeDesc) is AbsApi.ClassType:
|
||||
methodDict['convertInputClassArrayToLongArray'] = True
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue