Index: /trunk/BNC/bnccomb.cpp
===================================================================
--- /trunk/BNC/bnccomb.cpp	(revision 2867)
+++ /trunk/BNC/bnccomb.cpp	(revision 2868)
@@ -59,5 +59,5 @@
 ////////////////////////////////////////////////////////////////////////////
 void bncComb::processCorrLine(const QString& staID, const QString& line) {
-  cout << staID.toAscii().data() << " " << line.toAscii().data() << endl;
+  ///  cout << staID.toAscii().data() << " " << line.toAscii().data() << endl;
 }
 
Index: /trunk/BNC/bncwindow.cpp
===================================================================
--- /trunk/BNC/bncwindow.cpp	(revision 2867)
+++ /trunk/BNC/bncwindow.cpp	(revision 2868)
@@ -519,4 +519,5 @@
   QWidget* sergroup = new QWidget();
   QWidget* pppgroup = new QWidget();
+  QWidget* cmbgroup = new QWidget();
   _aogroup->addTab(pgroup,tr("Proxy"));
   _aogroup->addTab(ggroup,tr("General"));
@@ -529,4 +530,5 @@
   _aogroup->addTab(rgroup,tr("Miscellaneous"));
   _aogroup->addTab(pppgroup,tr("PPP Client"));
+  _aogroup->addTab(cmbgroup,tr("Combination"));
 
   // Log Tab
@@ -799,4 +801,23 @@
 
   pppgroup->setLayout(pppLayout);
+
+  // Combination
+  // -----------
+  QGridLayout* cmbLayout = new QGridLayout;
+
+  _cmbTable = new QTableWidget(0,3);
+  _cmbTable->horizontalHeader()->setStretchLastSection(true);
+  _cmbTable->setHorizontalHeaderLabels(QString("Mountpoint, AC Name, Weight").split(","));
+  cmbLayout->addWidget(_cmbTable,0,0,6,1);
+
+  QPushButton* addRowButton = new QPushButton("Add Row");
+  cmbLayout->addWidget(addRowButton,0,1);
+  QPushButton* delRowButton = new QPushButton("Delete");
+  cmbLayout->addWidget(delRowButton,1,1);
+
+  cmbLayout->addWidget(new QLabel,0,2);
+  cmbLayout->setColumnStretch(2,1);
+
+  cmbgroup->setLayout(cmbLayout);
 
   // Main Layout
Index: /trunk/BNC/bncwindow.h
===================================================================
--- /trunk/BNC/bncwindow.h	(revision 2867)
+++ /trunk/BNC/bncwindow.h	(revision 2868)
@@ -183,4 +183,6 @@
     bncFigurePPP*   _bncFigurePPP;
 
+    QTableWidget* _cmbTable;
+
     bncCaster* _caster;
 };
