Merge branch 'master' of git.sv.gnu.org:/srv/git/linphone

This commit is contained in:
Simon Morlat 2011-02-01 14:11:21 +01:00
commit 6b8b0c8f55

View file

@ -110,7 +110,11 @@ public interface LinphoneCall {
* The remote accepted the call update initiated by us
*/
public static final State CallUpdated = new State(17, "CallUpdated");
/**
* The call object is now released.
*/
public static final State CallReleased = new State(18,"CallReleased");
private State(int value,String stringValue) {
mValue = value;