Changeset 3792 in ntrip
- Timestamp:
- Apr 5, 2012, 1:10:58 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncwindow.cpp
r3790 r3792 2331 2331 _runningPostProcessingPPP = true; 2332 2332 _actStart->setText("0 Epochs"); 2333 enableStartStop(); 2333 2334 2334 2335 slotSaveOptions(); … … 2367 2368 void bncWindow::startPostProcessingTeqc() { 2368 2369 _runningPostProcessingTeqc = false; // TODO 2370 enableStartStop(); 2369 2371 QMessageBox::information(this, "Information", 2370 2372 "Teqc-Processing Not Yet Implemented"); … … 2377 2379 QMessageBox::information(this, "Information", 2378 2380 "Teqc-Processing Thread Finished"); 2381 enableStartStop(); 2379 2382 } 2380 2383 … … 2393 2396 2394 2397 if ( _pppSPPComboBox && _pppSPPComboBox->currentText() == "Post-Processing" ) { 2395 _actStart->setEnabled(true); 2398 if (_runningPostProcessingPPP) { 2399 _actStart->setEnabled(false); 2400 } 2401 else { 2402 _actStart->setEnabled(true); 2403 } 2396 2404 _actStop->setEnabled(false); 2397 2405 } 2398 2406 else if ( _teqcActionComboBox && !_teqcActionComboBox->currentText().isEmpty() ) { 2399 _actStart->setEnabled(true); 2407 if (_runningPostProcessingTeqc) { 2408 _actStart->setEnabled(false); 2409 } 2410 else { 2411 _actStart->setEnabled(true); 2412 } 2400 2413 _actStop->setEnabled(false); 2401 2414 }
Note:
See TracChangeset
for help on using the changeset viewer.