Changeset 1351 in ntrip
- Timestamp:
- Dec 27, 2008, 1:28:16 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bnctabledlg.cpp
r1350 r1351 318 318 settings.setValue("casterHostList", casterHostList); 319 319 settings.setValue("casterPort", _casterPortLineEdit->text()); 320 settings.setValue("ntripVersion", _ntripVersionComboBox->currentText()); 320 321 settings.setValue("casterUser", _casterUserLineEdit->text()); 321 322 settings.setValue("casterPassword", _casterPasswordLineEdit->text()); … … 330 331 QString longitude = _table->item(ir,9)->text(); 331 332 QString nmea = _table->item(ir,10)->text(); 333 QString ntripVersion = _ntripVersionComboBox->currentText(); 332 334 format.replace(" ", "_"); 333 335 if (_table->isItemSelected(item)) { … … 339 341 url.setPath(item->text()); 340 342 341 mountPoints->push_back(url.toString() + " " + format + " " + latitude + " " + longitude + " " + nmea); 343 mountPoints->push_back(url.toString() + " " + format + " " + latitude 344 + " " + longitude + " " + nmea + " " + ntripVersion); 342 345 } 343 346 }
Note:
See TracChangeset
for help on using the changeset viewer.