Renames occurrences of callParticipant to callPeer so that it would better reflect our new Call architecture that also includes conferencing and ConferenceMembers

cusax-fix
Emil Ivov 17 years ago
parent 4e7222c738
commit f4b52cf63b

@ -197,19 +197,16 @@ public void run()
for (CallRecord call : historyCalls)
{
List<CallPeerRecord> callPeerRecords
= call.getPeerRecords();
List<CallPeerRecord> callPeerRecords = call.getPeerRecords();
//extract all call participants for that call.
for (CallPeerRecord cpRecord
: callPeerRecords)
//extract all call peers for that call.
for (CallPeerRecord cpRecord : callPeerRecords)
{
String participant = cpRecord.getPeerAddress();
String peer = cpRecord.getPeerAddress();
if(!callComboModel.contains(participant))
if(!callComboModel.contains(peer))
{
callComboModel
.addElement(participant);
callComboModel.addElement(peer);
}
}
}

Loading…
Cancel
Save