Changeset 3792 in ntrip for trunk/BNC/bncwindow.cpp


Ignore:
Timestamp:
Apr 5, 2012, 1:10:58 PM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncwindow.cpp

    r3790 r3792  
    23312331  _runningPostProcessingPPP = true;
    23322332  _actStart->setText("0 Epochs");
     2333  enableStartStop();
    23332334
    23342335  slotSaveOptions();
     
    23672368void bncWindow::startPostProcessingTeqc() {
    23682369  _runningPostProcessingTeqc = false;  // TODO
     2370  enableStartStop();
    23692371  QMessageBox::information(this, "Information",
    23702372                           "Teqc-Processing Not Yet Implemented");
     
    23772379  QMessageBox::information(this, "Information",
    23782380                           "Teqc-Processing Thread Finished");
     2381  enableStartStop();
    23792382}
    23802383
     
    23932396
    23942397  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    }
    23962404    _actStop->setEnabled(false);
    23972405  }
    23982406  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    }
    24002413    _actStop->setEnabled(false);
    24012414  }
Note: See TracChangeset for help on using the changeset viewer.