Changeset 3783 in ntrip
- Timestamp:
- Apr 5, 2012, 12:06:53 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncwindow.cpp
r3782 r3783 386 386 _pppSPPComboBox = new QComboBox(); 387 387 _pppSPPComboBox->setEditable(false); 388 _pppSPPComboBox->addItems(QString(" Realtime-PPP,Realtime-SPP,Post-Processing").split(","));388 _pppSPPComboBox->addItems(QString(",Realtime-PPP,Realtime-SPP,Post-Processing").split(",")); 389 389 int ik = _pppSPPComboBox->findText(settings.value("pppSPP").toString()); 390 390 if (ik != -1) { … … 961 961 _teqcActionComboBox = new QComboBox(); 962 962 _teqcActionComboBox->setEditable(false); 963 _teqcActionComboBox->addItems(QString(" Edit,Analyze").split(","));963 _teqcActionComboBox->addItems(QString(",Edit,Analyze").split(",")); 964 964 ik = _teqcActionComboBox->findText(settings.value("teqcAction").toString()); 965 965 if (ik != -1) { … … 1656 1656 } 1657 1657 1658 // Retrieve Data1658 // Start It! 1659 1659 //////////////////////////////////////////////////////////////////////////// 1660 1660 void bncWindow::slotStart() { 1661 1661 slotSaveOptions(); 1662 if ( _pppSPPComboBox->currentText() == "Post-Processing" ) { 1663 startPostProcessingPPP(); 1664 } 1665 else if ( !_teqcActionComboBox->currentText().isEmpty() ) { 1666 startPostProcessingTeqc(); 1667 } 1668 else { 1669 startRealTime(); 1670 } 1671 } 1672 1673 // Start Real-Time (Retrieve Data etc.) 1674 //////////////////////////////////////////////////////////////////////////// 1675 void bncWindow::startRealTime() { 1662 1676 1663 1677 _bncFigurePPP->reset();
Note:
See TracChangeset
for help on using the changeset viewer.