From fee181c67c9fad21ccc66c516fa694e9030f0cd0 Mon Sep 17 00:00:00 2001 From: Emmanuel Lepage <emmanuel.lepage@savoirfairelinux.com> Date: Thu, 29 Sep 2011 13:37:55 -0400 Subject: [PATCH] [#7021] More cleanup for release --- src/CallModel.hpp | 1 - src/sflphone_const.h | 22 +++++++++++----------- 2 files changed, 11 insertions(+), 12 deletions(-) diff --git a/src/CallModel.hpp b/src/CallModel.hpp index 2d89323c..b81efc98 100644 --- a/src/CallModel.hpp +++ b/src/CallModel.hpp @@ -135,7 +135,6 @@ template<typename CallWidget, typename Index> QList<Call*> CallModel<CallWidget, template<typename CallWidget, typename Index> Call* CallModel<CallWidget,Index>::addCall(Call* call, Call* parent) { Q_UNUSED(parent) - qDebug() << "-------------------Adding call" << call << "-------------------"; InternalStruct* aNewStruct = new InternalStruct; aNewStruct->call_real = call; aNewStruct->conference = false; diff --git a/src/sflphone_const.h b/src/sflphone_const.h index 4ddd9ce0..4475f5a6 100644 --- a/src/sflphone_const.h +++ b/src/sflphone_const.h @@ -282,27 +282,27 @@ typedef enum { /** Ringing incoming call */ - CALL_STATE_INCOMING =0, + CALL_STATE_INCOMING = 0, /** Ringing outgoing call */ - CALL_STATE_RINGING=1, + CALL_STATE_RINGING = 1, /** Call to which the user can speak and hear */ - CALL_STATE_CURRENT=2, + CALL_STATE_CURRENT = 2, /** Call which numbers are being added by the user */ - CALL_STATE_DIALING=3, + CALL_STATE_DIALING = 3, /** Call is on hold */ - CALL_STATE_HOLD=4, + CALL_STATE_HOLD = 4, /** Call has failed */ - CALL_STATE_FAILURE=5, + CALL_STATE_FAILURE = 5, /** Call is busy */ - CALL_STATE_BUSY=6, + CALL_STATE_BUSY = 6, /** Call is being transfered. During this state, the user can enter the new number. */ - CALL_STATE_TRANSFER=7, + CALL_STATE_TRANSFER = 7, /** Call is on hold for transfer */ - CALL_STATE_TRANSF_HOLD=8, + CALL_STATE_TRANSF_HOLD = 8, /** Call is over and should not be used */ - CALL_STATE_OVER=9, + CALL_STATE_OVER = 9, /** This state should never be reached */ - CALL_STATE_ERROR=10 + CALL_STATE_ERROR = 10 } call_state; /** MIME API */ -- GitLab