]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Minor changes.
authorJoao Mesquita <jmesquita@freeswitch.org>
Mon, 5 Apr 2010 06:05:56 +0000 (03:05 -0300)
committerJoao Mesquita <jmesquita@freeswitch.org>
Mon, 5 Apr 2010 06:05:56 +0000 (03:05 -0300)
fscomm/fshost.h
fscomm/mainwindow.cpp

index 5f7b113ebc13498031dcb0339514469bade3f2b9..da5948a773b605fd83ea2d6d5951b8869b78435c 100644 (file)
@@ -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<QString, QSharedPointer<Call> > _active_calls;
     QHash<QString, QSharedPointer<Account> > _accounts;
     QHash<QString, QSharedPointer<Channel> > _channels;
index 2b2edd9b1dd0c9e4edd2e5a5d5f674c71d1169b9..e75613ac2f08af6e379ab55852010108e1a211a1 100644 (file)
@@ -131,7 +131,6 @@ void MainWindow::updateCallTimers()
     {
         QTableWidgetItem* item = ui->tableCalls->item(row, 2);
         QSharedPointer<Call> 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);