aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/java/sip/communicator/service/callhistory
diff options
context:
space:
mode:
authorEmil Ivov <emcho@jitsi.org>2009-08-09 21:24:15 +0000
committerEmil Ivov <emcho@jitsi.org>2009-08-09 21:24:15 +0000
commit39f039f526ab790c768ffcd88af379b8134dddbd (patch)
tree8793be1096b4bc58f10b49b0b1e85d2a62dfe1ae /src/net/java/sip/communicator/service/callhistory
parent54d5fa8ac15d4aa60bba646a0267e6574829e498 (diff)
downloadjitsi-39f039f526ab790c768ffcd88af379b8134dddbd.zip
jitsi-39f039f526ab790c768ffcd88af379b8134dddbd.tar.gz
jitsi-39f039f526ab790c768ffcd88af379b8134dddbd.tar.bz2
Renames CallParticipant to CallPeer so that it would better reflect our new Call architecture that also includes conferencing and ConferenceMembers
Diffstat (limited to 'src/net/java/sip/communicator/service/callhistory')
-rw-r--r--src/net/java/sip/communicator/service/callhistory/CallParticipantRecord.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/java/sip/communicator/service/callhistory/CallParticipantRecord.java b/src/net/java/sip/communicator/service/callhistory/CallParticipantRecord.java
index caefbb3..0973dbf 100644
--- a/src/net/java/sip/communicator/service/callhistory/CallParticipantRecord.java
+++ b/src/net/java/sip/communicator/service/callhistory/CallParticipantRecord.java
@@ -16,7 +16,7 @@ public class CallParticipantRecord
protected String participantAddress = null;
protected Date startTime = null;
protected Date endTime = null;
- protected CallParticipantState state = CallParticipantState.UNKNOWN;
+ protected CallPeerState state = CallPeerState.UNKNOWN;
/**
* Creates CallParticipantRecord
@@ -66,7 +66,7 @@ public class CallParticipantRecord
* Returns the actual state of the participant
* @return CallParticipantState
*/
- public CallParticipantState getState()
+ public CallPeerState getState()
{
return state;
}