Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
c1a21d90
Commit
c1a21d90
authored
Oct 17, 2017
by
Sylvain Berfini
🐮
Browse files
Fixed issue in Java wrapper with XmlRpcRequest.Status
parent
63a74d3b
Changes
2
Hide whitespace changes
Inline
Side-by-side
wrappers/java/genwrapper.py
View file @
c1a21d90
...
...
@@ -191,6 +191,8 @@ class JavaTranslator(object):
return
'int'
elif
jni
:
return
'jint'
if
_type
.
desc
.
name
.
to_camel_case
()
==
"XmlRpcStatus"
:
return
"XmlRpcRequest.Status"
name
=
_type
.
desc
.
name
.
to_camel_case
()
if
name
in
ENUMS_LIST
:
className
=
ENUMS_LIST
[
name
]
...
...
wrappers/java/migration.sh
View file @
c1a21d90
...
...
@@ -308,9 +308,7 @@ eval "$SED_START 's/mLc.setCpuCount(/\/\/mLc.setCpuCount(/g' $SED_END"
#Tunnel, TunnelConfig
#LinphoneBuffer
#AccountCreator.updatePassword => What to do ?
# XmlRpcStatus ! must be XmlRpcRequest.Status
# XmlRpcRequest and XmlRpcSession constructors...
# Factory.createContent(
# XmlRpcRequest and XmlRpcSession constructors
# Callbacks with return like chat messages' file transfer
#Android specifics not wrapped automatically
...
...
@@ -347,6 +345,7 @@ eval "$SED_START 's/mLc.setCpuCount(/\/\/mLc.setCpuCount(/g' $SED_END"
#Factory.instance().setLogCollectionPath(getFilesDir().getAbsolutePath()); => Core.setLogCollectionPath
#Factory.instance().enableLogCollection(isDebugEnabled); => Core.enableLogCollection
#Factory.instance().setDebugMode(isDebugEnabled, getString(R.string.app_name)); => Core.setLogLevelMask
#Factory.createContent( => Core.createContent(
# # Core
#Core.getVideoDevice and Core.setVideoDevice now takes/returns String instead of int
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment