]> sjero.net Git - linphone/commitdiff
add new LinphoneCallState in java
authorSimon Morlat <simon.morlat@linphone.org>
Tue, 1 Feb 2011 11:08:17 +0000 (12:08 +0100)
committerSimon Morlat <simon.morlat@linphone.org>
Tue, 1 Feb 2011 11:08:17 +0000 (12:08 +0100)
java/common/org/linphone/core/LinphoneCall.java

index 66418a930e7bd15bf202e07e74d70d83cabcb718..29f7f1455e4d49ca0e44485fcbddb4c6d5911c6b 100644 (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;