From f4b52cf63b3db91076a8e49046bb3edb06ff9029 Mon Sep 17 00:00:00 2001 From: Emil Ivov Date: Sun, 9 Aug 2009 21:46:16 +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 | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 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 a69ef2f3f..0c1ec32be 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,19 +197,16 @@ public void run() for (CallRecord call : historyCalls) { - List callPeerRecords - = call.getPeerRecords(); + List 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); } } }