Index: /trunk/BNC/src/PPP/pppwidgets.cpp
===================================================================
--- /trunk/BNC/src/PPP/pppwidgets.cpp	(revision 5705)
+++ /trunk/BNC/src/PPP/pppwidgets.cpp	(revision 5706)
@@ -213,5 +213,9 @@
 ////////////////////////////////////////////////////////////////////////////
 void t_pppWidgets::slotAddStation() {
-
+  int iRow = _staTable->rowCount();
+  _staTable->insertRow(iRow);
+  for (int iCol = 0; iCol < _staTable->columnCount(); iCol++) {
+    _staTable->setItem(iRow, iCol, new QTableWidgetItem(""));
+  }
 }
 
@@ -219,4 +223,18 @@
 ////////////////////////////////////////////////////////////////////////////
 void t_pppWidgets::slotDelStation() {
-
-}
+  int nRows = _staTable->rowCount();
+  bool flg[nRows];
+  for (int iRow = 0; iRow < nRows; iRow++) {
+    if (_staTable->isItemSelected(_staTable->item(iRow,1))) {
+      flg[iRow] = true;
+    }
+    else {
+      flg[iRow] = false;
+    }
+  }
+  for (int iRow = nRows-1; iRow >= 0; iRow--) {
+    if (flg[iRow]) {
+      _staTable->removeRow(iRow);
+    }
+  }
+}
