mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-08-13 17:38:59 +00:00
Prepare UI modifications for codec and profile clid configuration.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16507 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
@@ -168,7 +168,6 @@ void MainWindow::coreLoadingError(QString err)
|
||||
|
||||
void MainWindow::accountAdd(QSharedPointer<Account> acc)
|
||||
{
|
||||
qDebug() << "Adding: " << acc.data()->getName();
|
||||
ui->tableAccounts->setRowCount(ui->tableAccounts->rowCount()+1);
|
||||
QTableWidgetItem *gwField = new QTableWidgetItem(acc.data()->getName());
|
||||
QTableWidgetItem *stField = new QTableWidgetItem(acc.data()->getStateName());
|
||||
@@ -181,7 +180,6 @@ void MainWindow::accountAdd(QSharedPointer<Account> acc)
|
||||
|
||||
void MainWindow::accountDel(QSharedPointer<Account> acc)
|
||||
{
|
||||
qDebug() << "Deleting: " << acc.data()->getName();
|
||||
foreach (QTableWidgetItem *i, ui->tableAccounts->findItems(acc.data()->getName(), Qt::MatchExactly))
|
||||
{
|
||||
if (i->text() == acc.data()->getName())
|
||||
|
Reference in New Issue
Block a user