From b9d5c62b3d686a46e05571e6b0d9e892f9d242c8 Mon Sep 17 00:00:00 2001 From: Joao Mesquita Date: Mon, 5 Apr 2010 03:05:56 -0300 Subject: [PATCH] Minor changes. --- fscomm/fshost.h | 7 ++++--- fscomm/mainwindow.cpp | 1 - 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/fscomm/fshost.h b/fscomm/fshost.h index 5f7b113ebc..da5948a773 100644 --- a/fscomm/fshost.h +++ b/fscomm/fshost.h @@ -82,11 +82,12 @@ private slots: void minimalModuleLoaded(QString, QString); private: + /* Helper methods */ void createFolders(); void printEventHeaders(switch_event_t *event); /*FSM State handlers*/ - /**Channel Related*/ + /** Channel Related*/ void eventChannelCreate(switch_event_t *event, QString uuid); void eventChannelAnswer(switch_event_t *event, QString uuid); void eventChannelState(switch_event_t *event, QString uuid); @@ -101,12 +102,12 @@ private: void eventChannelHangupComplete(switch_event_t *event, QString uuid); void eventChannelDestroy(switch_event_t *event, QString uuid); - /**Others*/ + /** Others*/ void eventCodec(switch_event_t *event, QString uuid); void eventCallUpdate(switch_event_t *event, QString uuid); void eventRecvInfo(switch_event_t *event, QString uuid); - /*END*/ + /* Structures to keep track of things */ QHash > _active_calls; QHash > _accounts; QHash > _channels; diff --git a/fscomm/mainwindow.cpp b/fscomm/mainwindow.cpp index 2b2edd9b1d..e75613ac2f 100644 --- a/fscomm/mainwindow.cpp +++ b/fscomm/mainwindow.cpp @@ -131,7 +131,6 @@ void MainWindow::updateCallTimers() { QTableWidgetItem* item = ui->tableCalls->item(row, 2); QSharedPointer call = g_FSHost.getCallByUUID(item->data(Qt::UserRole).toString()); - /*if (call.data() == NULL) continue;*/ QTime time = call.data()->getCurrentStateTime(); item->setText(time.toString("hh:mm:ss")); item->setTextAlignment(Qt::AlignRight);