Skip to content
Snippets Groups Projects
Commit ea5ebde9 authored by Emmanuel Lepage's avatar Emmanuel Lepage
Browse files

Fix a daemon bug

parent cceb4c0a
No related branches found
No related tags found
No related merge requests found
...@@ -1053,6 +1053,7 @@ void ManagerImpl::detachParticipant (const std::string& call_id, ...@@ -1053,6 +1053,7 @@ void ManagerImpl::detachParticipant (const std::string& call_id,
removeParticipant (call_id); removeParticipant (call_id);
processRemainingParticipant (current_call_id, conf); processRemainingParticipant (current_call_id, conf);
} }
_dbus.getCallManager()->conferenceChanged (conf->getConfID(), conf->getStateStr());
} else { } else {
_debug ("Manager: Unbind main participant from conference %d"); _debug ("Manager: Unbind main participant from conference %d");
getMainBuffer()->unBindAll (Call::DEFAULT_ID); getMainBuffer()->unBindAll (Call::DEFAULT_ID);
......
...@@ -520,6 +520,7 @@ void CallView::conferenceCreatedSignal(const QString& confId) ...@@ -520,6 +520,7 @@ void CallView::conferenceCreatedSignal(const QString& confId)
void CallView::conferenceChangedSignal(const QString& confId, const QString& state) void CallView::conferenceChangedSignal(const QString& confId, const QString& state)
{ {
qDebug() << "Conf changed signal";
conferenceChanged(confId, state); conferenceChanged(confId, state);
} }
......
...@@ -270,6 +270,7 @@ template<typename CallWidget, typename Index> bool CallModel<CallWidget,Index>:: ...@@ -270,6 +270,7 @@ template<typename CallWidget, typename Index> bool CallModel<CallWidget,Index>::
///Executed when the daemon signal a modification in an existing conference. Update the call list and update the TreeView ///Executed when the daemon signal a modification in an existing conference. Update the call list and update the TreeView
template<typename CallWidget, typename Index> bool CallModel<CallWidget,Index>::conferenceChanged(const QString& confId, const QString& state) template<typename CallWidget, typename Index> bool CallModel<CallWidget,Index>::conferenceChanged(const QString& confId, const QString& state)
{ {
qDebug() << "Conf changed2";
Q_UNUSED(state) Q_UNUSED(state)
if (!privateCallList_callId[confId]) { if (!privateCallList_callId[confId]) {
......
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
* along with this program; if not, write to the * * along with this program; if not, write to the *
* Free Software Foundation, Inc., * * Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/ **************************************************************************/
#include "Contact.h" #include "Contact.h"
#include <QtCore/QDebug> #include <QtCore/QDebug>
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
* along with this program; if not, write to the * * along with this program; if not, write to the *
* Free Software Foundation, Inc., * * Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/ **************************************************************************/
#include <QtCore/QStringList> #include <QtCore/QStringList>
...@@ -34,7 +34,7 @@ const char * CallTreeItem::callStateIcons[12] = {ICON_INCOMING, ICON_RINGING, IC ...@@ -34,7 +34,7 @@ const char * CallTreeItem::callStateIcons[12] = {ICON_INCOMING, ICON_RINGING, IC
CallTreeItem::CallTreeItem(QWidget *parent) CallTreeItem::CallTreeItem(QWidget *parent)
: QWidget(parent), itemCall(0), init(false) : QWidget(parent), itemCall(0), init(false)
{ {
setMaximumSize(99999,50);
} }
CallTreeItem::~CallTreeItem() CallTreeItem::~CallTreeItem()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment