From 4e7222c738680dc267e1fd0fa393e25ad1491286 Mon Sep 17 00:00:00 2001 From: Emil Ivov Date: Sun, 9 Aug 2009 21:45:53 +0000 Subject: [PATCH] Renames occurrences of callParticipant to callPeer so that it would better reflect our new Call architecture that also includes conferencing and ConferenceMembers --- .../impl/gui/main/call/CallComboBox.java | 4 ++-- .../impl/gui/main/call/DialpadDialog.java | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/net/java/sip/communicator/impl/gui/main/call/CallComboBox.java b/src/net/java/sip/communicator/impl/gui/main/call/CallComboBox.java index 2cb4e62b5..a69ef2f3f 100644 --- a/src/net/java/sip/communicator/impl/gui/main/call/CallComboBox.java +++ b/src/net/java/sip/communicator/impl/gui/main/call/CallComboBox.java @@ -197,12 +197,12 @@ public void run() for (CallRecord call : historyCalls) { - List callParticipantRecords + List callPeerRecords = call.getPeerRecords(); //extract all call participants for that call. for (CallPeerRecord cpRecord - : callParticipantRecords) + : callPeerRecords) { String participant = cpRecord.getPeerAddress(); diff --git a/src/net/java/sip/communicator/impl/gui/main/call/DialpadDialog.java b/src/net/java/sip/communicator/impl/gui/main/call/DialpadDialog.java index ec6b2b7bd..8e1be9540 100644 --- a/src/net/java/sip/communicator/impl/gui/main/call/DialpadDialog.java +++ b/src/net/java/sip/communicator/impl/gui/main/call/DialpadDialog.java @@ -17,7 +17,7 @@ /** * The DialpadDialog 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 DialpadDialog. - * - * @param callParticipants The corresponding call participants. + * + * @param callPeers The corresponding call peers. */ - public DialpadDialog(Iterator callParticipants) + public DialpadDialog(Iterator callPeers) { this.setModal(false); - dialPanel = new DialPanel(callParticipants); + dialPanel = new DialPanel(callPeers); this.init(); @@ -44,7 +44,7 @@ public DialpadDialog(Iterator callParticipants) /** * Creates an instance of the DialpadDialog. - * + * * @param mainCallPanel The call panel. */ public DialpadDialog(MainCallPanel mainCallPanel)