diff --git a/src/CallModel.hpp b/src/CallModel.hpp
index 2d89323c286d34ac2a83f0800795bcd29828bb15..b81efc9834430ec6c1f88441a412e9fcb6d29086 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 4ddd9ce0c5b5332f3042585340f6df05aac3b005..4475f5a67c3ec0c3a62632cb7c1988e8230c3464 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 */