when adding a call in the call list check if it's empty and add the day label

cusax-fix
Yana Stamcheva 20 years ago
parent a9a4c25a95
commit ec73556570

@ -311,9 +311,9 @@ public CallList getCallList()
public void addCallRecord(int index, GuiCallParticipantRecord callRecord)
{
if(callList.getModel().getSize() == 0) {
callList.addItem(processDate(callRecord.getStartTime()));
index ++;
callList.addItem(processDate(callRecord.getStartTime()), index);
}
index ++;
this.callList.addItem(callRecord, index);

Loading…
Cancel
Save