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 52b1c6cc41
commit 4e7222c738

@ -197,12 +197,12 @@ public void run()
for (CallRecord call : historyCalls)
{
List<CallPeerRecord> callParticipantRecords
List<CallPeerRecord> callPeerRecords
= call.getPeerRecords();
//extract all call participants for that call.
for (CallPeerRecord cpRecord
: callParticipantRecords)
: callPeerRecords)
{
String participant = cpRecord.getPeerAddress();

@ -17,7 +17,7 @@
/**
* The <tt>DialpadDialog</tt> is a popup dialog containing a dialpad.
*
*
* @author Yana Stamcheva
*/
public class DialpadDialog
@ -28,14 +28,14 @@ public class DialpadDialog
/**
* Creates an instance of the <tt>DialpadDialog</tt>.
*
* @param callParticipants The corresponding call participants.
*
* @param callPeers The corresponding call peers.
*/
public DialpadDialog(Iterator<CallPeer> callParticipants)
public DialpadDialog(Iterator<CallPeer> callPeers)
{
this.setModal(false);
dialPanel = new DialPanel(callParticipants);
dialPanel = new DialPanel(callPeers);
this.init();
@ -44,7 +44,7 @@ public DialpadDialog(Iterator<CallPeer> callParticipants)
/**
* Creates an instance of the <tt>DialpadDialog</tt>.
*
*
* @param mainCallPanel The call panel.
*/
public DialpadDialog(MainCallPanel mainCallPanel)

Loading…
Cancel
Save