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)