Skip to content
Snippets Groups Projects
Commit c822d7bd authored by Jérémy Quentin's avatar Jérémy Quentin
Browse files

Commit before checkout previous version to check the display bug(little font everywhere...)

parent 8982defa
No related branches found
No related tags found
No related merge requests found
...@@ -123,10 +123,10 @@ QListWidgetItem * Call::getHistoryItem() ...@@ -123,10 +123,10 @@ QListWidgetItem * Call::getHistoryItem()
{ {
if(historyItem == NULL) if(historyItem == NULL)
{ {
historyItem = new QListWidgetItem(peer); historyItem = new QListWidgetItem("<H1>"+peer+"</H1>");
historyItem->setIcon(historyIcons[historyState]); historyItem->setIcon(historyIcons[historyState]);
} }
return item; return historyItem;
} }
call_state Call::getState() const call_state Call::getState() const
......
...@@ -19,6 +19,10 @@ ConfigurationDialog::ConfigurationDialog(SFLPhone *parent) : QDialog(parent) ...@@ -19,6 +19,10 @@ ConfigurationDialog::ConfigurationDialog(SFLPhone *parent) : QDialog(parent)
codecPayloads = new MapStringString(); codecPayloads = new MapStringString();
horizontalSlider_Capacity->setMaximum(MAX_HISTORY_CAPACITY); horizontalSlider_Capacity->setMaximum(MAX_HISTORY_CAPACITY);
label_WarningSIP->setVisible(false); label_WarningSIP->setVisible(false);
for(int i = 0 ; i < listOptions->count() ; i++)
{
listOptions->item(i)->setTextAlignment(Qt::AlignHCenter);
}
//TODO ajouter les items de l'interface audio ici avec les constantes //TODO ajouter les items de l'interface audio ici avec les constantes
......
...@@ -581,7 +581,7 @@ ...@@ -581,7 +581,7 @@
</widget> </widget>
</item> </item>
<item> <item>
<widget class="QToolButton" name="button_accountDown_2" > <widget class="QToolButton" name="button_accountUp" >
<property name="text" > <property name="text" >
<string>Up</string> <string>Up</string>
</property> </property>
......
...@@ -226,6 +226,7 @@ void SFLPhone::updateWindowCallState() ...@@ -226,6 +226,7 @@ void SFLPhone::updateWindowCallState()
qDebug() << "Reached CALL_STATE_OVER. Deleting item " << (*callList)[item]->getCallId(); qDebug() << "Reached CALL_STATE_OVER. Deleting item " << (*callList)[item]->getCallId();
listWidget_callList->takeItem(listWidget_callList->row(item)); listWidget_callList->takeItem(listWidget_callList->row(item));
listWidget_callHistory->addItem(call->getHistoryItem()); listWidget_callHistory->addItem(call->getHistoryItem());
qDebug() << call->getHistoryItem();
listWidget_callHistory->setCurrentRow(listWidget_callHistory->count() - 1); listWidget_callHistory->setCurrentRow(listWidget_callHistory->count() - 1);
return; return;
break; break;
...@@ -237,7 +238,7 @@ void SFLPhone::updateWindowCallState() ...@@ -237,7 +238,7 @@ void SFLPhone::updateWindowCallState()
break; break;
} }
} }
qDebug() << "mi"; //qDebug() << "mi";
if (item) if (item)
{ {
qDebug() << "rentre " << item; qDebug() << "rentre " << item;
......
sflphone_kde/icons/del_off.png

561 B

sflphone_kde/icons/del_on.png

616 B

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment