diff --git a/kde/src/AccountView.cpp b/kde/src/AccountView.cpp index 692a40d1add982490cf1e2ba87f5a58b3f0c4b23..7d0b0ddd7df5462b3930c6190b8865952144dba6 100644 --- a/kde/src/AccountView.cpp +++ b/kde/src/AccountView.cpp @@ -148,21 +148,20 @@ AccountView* AccountView::buildNewAccountFromAlias(const QString& alias) ///Change LED color void AccountView::updateState() { - qDebug() << "updateState"; if(! isNew()) { Account::updateState(); AccountItemWidget * m_pWidget = getItemWidget(); if(getAccountDetail(ACCOUNT_ENABLED) != ACCOUNT_ENABLED_TRUE ) { - qDebug() << "m_pWidget->setState(AccountItemWidget::Unregistered);"; + qDebug() << "Changing account state to Unregistered"; m_pWidget->setState(AccountItemWidget::Unregistered); } else if(getAccountDetail(ACCOUNT_STATUS) == ACCOUNT_STATE_REGISTERED || getAccountDetail(ACCOUNT_STATUS) == ACCOUNT_STATE_READY) { - qDebug() << "m_pWidget->setState(AccountItemWidget::Registered);"; + qDebug() << "Changing account state to Registered"; m_pWidget->setState(AccountItemWidget::Registered); } else { - qDebug() << "m_pWidget->setState(AccountItemWidget::NotWorking);"; + qDebug() << "Changing account state to NotWorking"; m_pWidget->setState(AccountItemWidget::NotWorking); } } diff --git a/kde/src/SFLPhone.cpp b/kde/src/SFLPhone.cpp index 9e529a1c4937c83fe1ab961501cd39fb3b7db999..76da8768b53ccca7684cd0d789979d7a21274c99 100755 --- a/kde/src/SFLPhone.cpp +++ b/kde/src/SFLPhone.cpp @@ -324,7 +324,6 @@ void SFLPhone::setObjectNames() ///[Action]Hide sflphone bool SFLPhone::queryClose() { - qDebug() << "queryClose"; hide(); return false; } @@ -346,21 +345,18 @@ void SFLPhone::changeEvent(QEvent* event) ///Change status message void SFLPhone::on_m_pView_statusMessageChangeAsked(const QString & message) { - qDebug() << "on_m_pView_statusMessageChangeAsked : " + message; m_pStatusBarWidget->setText(message); } ///Change windowtitle void SFLPhone::on_m_pView_windowTitleChangeAsked(const QString & message) { - qDebug() << "on_m_pView_windowTitleChangeAsked : " + message; setWindowTitle(message); } ///Enable or disable toolbar items void SFLPhone::on_m_pView_enabledActionsChangeAsked(const bool * enabledActions) { - qDebug() << "on_m_pView_enabledActionsChangeAsked"; action_accept->setVisible ( enabledActions[SFLPhone::Accept ]); action_refuse->setVisible ( enabledActions[SFLPhone::Refuse ]); action_hold->setVisible ( enabledActions[SFLPhone::Hold ]); @@ -372,7 +368,6 @@ void SFLPhone::on_m_pView_enabledActionsChangeAsked(const bool * enabledActions) ///Change icons void SFLPhone::on_m_pView_actionIconsChangeAsked(const QString * actionIcons) { - qDebug() << "on_m_pView_actionIconsChangeAsked"; action_accept->setIcon ( QIcon(actionIcons[SFLPhone::Accept ])); action_refuse->setIcon ( QIcon(actionIcons[SFLPhone::Refuse ])); action_hold->setIcon ( QIcon(actionIcons[SFLPhone::Hold ])); @@ -384,7 +379,6 @@ void SFLPhone::on_m_pView_actionIconsChangeAsked(const QString * actionIcons) ///Change text void SFLPhone::on_m_pView_actionTextsChangeAsked(const QString * actionTexts) { - qDebug() << "on_m_pView_actionTextsChangeAsked"; action_accept->setText ( actionTexts[SFLPhone::Accept ]); action_refuse->setText ( actionTexts[SFLPhone::Refuse ]); action_hold->setText ( actionTexts[SFLPhone::Hold ]); @@ -396,14 +390,12 @@ void SFLPhone::on_m_pView_actionTextsChangeAsked(const QString * actionTexts) ///Change transfer state void SFLPhone::on_m_pView_transferCheckStateChangeAsked(bool transferCheckState) { - qDebug() << "Changing transfer action checkState"; action_transfer->setChecked(transferCheckState); } ///Change record state void SFLPhone::on_m_pView_recordCheckStateChangeAsked(bool recordCheckState) { - qDebug() << "Changing record action checkState"; action_record->setChecked(recordCheckState); } @@ -411,7 +403,6 @@ void SFLPhone::on_m_pView_recordCheckStateChangeAsked(bool recordCheckState) /// @deprecated This function can be removed void SFLPhone::on_m_pView_screenChanged(int screen) { - qDebug() << "on_m_pView_screenChanged"; if(screen == SCREEN_MAIN) action_main->setChecked(true); }