From 88bfc20aad22873621a28844d69d5fd187afebe4 Mon Sep 17 00:00:00 2001 From: Emmanuel Lepage <emmanuel.lepage@savoirfairelinux.com> Date: Thu, 22 Sep 2011 13:37:34 -0400 Subject: [PATCH] Remove or comment unnecessary/unhelpful debug output --- src/Call.cpp | 2 +- src/CallModel.hpp | 2 -- src/sflphone_const.h | 2 -- 3 files changed, 1 insertion(+), 5 deletions(-) diff --git a/src/Call.cpp b/src/Call.cpp index b23e67f1..fe36a4f1 100644 --- a/src/Call.cpp +++ b/src/Call.cpp @@ -673,7 +673,7 @@ void Call::backspaceItemText() void Call::changeCurrentState(call_state newState) { - qDebug() << "Call state changed to: " << newState; + //qDebug() << "Call state changed to: " << newState; currentState = newState; emit changed(); diff --git a/src/CallModel.hpp b/src/CallModel.hpp index e4dfffc3..56c625c0 100644 --- a/src/CallModel.hpp +++ b/src/CallModel.hpp @@ -73,10 +73,8 @@ template<typename CallWidget, typename Index> bool CallModel<CallWidget,Index>:: if (!historyInit) { ConfigurationManagerInterface& configurationManager = ConfigurationManagerInterfaceSingleton::getInstance(); QStringList historyMap = configurationManager.getHistory().value(); - qDebug() << "\n\n\n\n\n\n\n\nCall History = " ; foreach (QString historyCallId, historyMap) { QStringList param = historyCallId.split("|"); - qDebug() << "Param count" << param.size(); if (param.count() <= 10) { //If this ever change, look at the gnome client QString history_state = param[0]; diff --git a/src/sflphone_const.h b/src/sflphone_const.h index da143bc4..71b65a28 100644 --- a/src/sflphone_const.h +++ b/src/sflphone_const.h @@ -267,9 +267,7 @@ #define TLS_NEGOTIATION_TIMEOUT_MSEC "TLS.negotiationTimemoutMsec" #define ACCOUNT_ID "Account.id" -#define ACCOUNT_PASSWORD "password" #define ACCOUNT_AUTHENTICATION_USERNAME "authenticationUsername" -#define ACCOUNT_REALM "realm" #define ACCOUNT_KEY_EXCHANGE "SRTP.keyExchange" #define ACCOUNT_SRTP_ENABLED "SRTP.enable" #define ACCOUNT_SRTP_RTP_FALLBACK "SRTP.rtpFallback" -- GitLab