Changeset 1491 in ntrip


Ignore:
Timestamp:
Jan 18, 2009, 10:24:09 AM (15 years ago)
Author:
mervart
Message:

* empty log message *

Location:
trunk/BNC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bnctabledlg.cpp

    r1490 r1491  
    338338}
    339339
    340 // Create RINEX skeleton header
    341 ////////////////////////////////////////////////////////////////////////////
    342 void bncTableDlg::slotSkl() {
    343 
    344   int nRows = _table->rowCount();
    345   for (int iRow = 0; iRow < nRows; iRow++) {
    346     if (_table->isItemSelected(_table->item(iRow,1))) {
    347       QString staID = _table->item(iRow,0)->text();
    348       QString net   = _table->item(iRow,6)->text();
    349 
    350       QString ftpDir;
    351       QStringListIterator it(_allLines);
    352       while (it.hasNext()) {
    353         QString line = it.next();
    354         if (line.indexOf("NET") == 0) {
    355           QStringList tags = line.split(';');
    356           if (tags.at(1) == net) {
    357             ftpDir = tags.at(6);
    358             break;
    359           }
    360         }
    361       }
    362 
    363       if (!ftpDir.isEmpty()) {
    364         QUrl url(ftpDir);
    365         QMessageBox::warning(0, "Warning", url.host() + "\n" + url.path() +
    366                              "\nnot yet implemented");
    367       }
    368     }
    369   }
    370 }
    371 
    372340// Whats This Help
    373341void bncTableDlg::slotWhatsThis() {
  • trunk/BNC/bnctabledlg.h

    r1489 r1491  
    8383    QComboBox*   _ntripVersionComboBox;
    8484
    85     QPushButton* _buttonSkl;
    8685    QPushButton* _buttonGet;
    8786    QPushButton* _buttonCancel;
Note: See TracChangeset for help on using the changeset viewer.