Skip to content
Snippets Groups Projects
Commit 7dacbc2e authored by Tristan Matthews's avatar Tristan Matthews
Browse files
parents 3baa0f47 244fed54
No related branches found
No related tags found
Loading
...@@ -544,8 +544,7 @@ void SFLPhoneView::updateStatusMessage() ...@@ -544,8 +544,7 @@ void SFLPhoneView::updateStatusMessage()
else { else {
emit statusMessageChangeAsked(i18n("Using account") emit statusMessageChangeAsked(i18n("Using account")
+ " \'" + account->getAlias() + " \'" + account->getAlias()
+ "\' (" + account->getAccountDetail(ACCOUNT_TYPE) + ", " + "\' (" + account->getAccountDetail(ACCOUNT_REGISTRATION_STATUS) + ")");
+ account->getAccountDetail(ACCOUNT_REGISTRATION_STATUS) + ")");
} }
} }
......
...@@ -423,6 +423,7 @@ CALLMODEL_TEMPLATE bool CALLMODEL_T::changeConference(const QString& confId, con ...@@ -423,6 +423,7 @@ CALLMODEL_TEMPLATE bool CALLMODEL_T::changeConference(const QString& confId, con
///Remove a conference from the model and the TreeView ///Remove a conference from the model and the TreeView
CALLMODEL_TEMPLATE void CALLMODEL_T::removeConference(const QString &confId) CALLMODEL_TEMPLATE void CALLMODEL_T::removeConference(const QString &confId)
{ {
if (m_sPrivateCallList_callId[confId])
qDebug() << "Ending conversation containing " << m_sPrivateCallList_callId[confId]->children.size() << " participants"; qDebug() << "Ending conversation containing " << m_sPrivateCallList_callId[confId]->children.size() << " participants";
removeConference(getCall(confId)); removeConference(getCall(confId));
} }
......
...@@ -114,7 +114,7 @@ void CallTreeItem::setCall(Call *call) ...@@ -114,7 +114,7 @@ void CallTreeItem::setCall(Call *call)
m_pTransferPrefixL = new QLabel(i18n("Transfer to : ")); m_pTransferPrefixL = new QLabel(i18n("Transfer to : "));
m_pTransferNumberL = new QLabel(); m_pTransferNumberL = new QLabel();
m_pElapsedL = new QLabel(); m_pElapsedL = new QLabel();
QSpacerItem* verticalSpacer = new QSpacerItem(16777215, 20, QSizePolicy::Expanding, QSizePolicy::Expanding); QSpacerItem* verticalSpacer = new QSpacerItem(0, 0, QSizePolicy::Expanding, QSizePolicy::Expanding);
m_pTransferPrefixL->setVisible(false); m_pTransferPrefixL->setVisible(false);
m_pTransferNumberL->setVisible(false); m_pTransferNumberL->setVisible(false);
......
...@@ -242,7 +242,9 @@ void HistoryTreeItem::callAgain() ...@@ -242,7 +242,9 @@ void HistoryTreeItem::callAgain()
if (m_pItemCall) { if (m_pItemCall) {
kDebug() << "Calling "<< m_pItemCall->getPeerPhoneNumber(); kDebug() << "Calling "<< m_pItemCall->getPeerPhoneNumber();
} }
SFLPhone::model()->addDialingCall(m_Name, SFLPhone::app()->model()->getCurrentAccountId())->setCallNumber(m_PhoneNumber); Call* call = SFLPhone::model()->addDialingCall(m_Name, SFLPhone::app()->model()->getCurrentAccountId());
call->setCallNumber(m_PhoneNumber);
call->actionPerformed(CALL_ACTION_ACCEPT);
} }
///Copy the call ///Copy the call
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment