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
c7f8b5aa
Commit
c7f8b5aa
authored
Feb 19, 2014
by
Simon Morlat
Browse files
fix previous commit
parent
b57f8b15
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
java/impl/org/linphone/core/LinphoneCallParamsImpl.java
java/impl/org/linphone/core/LinphoneCallParamsImpl.java
+12
-0
No files found.
java/impl/org/linphone/core/LinphoneCallParamsImpl.java
View file @
c7f8b5aa
...
...
@@ -118,5 +118,17 @@ public class LinphoneCallParamsImpl implements LinphoneCallParams {
public
int
getPrivacy
()
{
return
getPrivacy
(
nativePtr
);
}
private
native
void
setSessionName
(
long
nativePtr
,
String
name
);
@Override
public
void
setSessionName
(
String
name
)
{
setSessionName
(
nativePtr
,
name
);
}
private
native
String
getSessionName
(
long
nativePtr
);
@Override
public
String
getSessionName
()
{
return
getSessionName
(
nativePtr
);
}
}
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