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


Ignore:
Timestamp:
Apr 11, 2012, 10:26:13 AM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncwindow.cpp

    r3824 r3825  
    10041004  _teqcActionComboBox->setMaximumWidth(15*ww);
    10051005
    1006   _teqcObsFileChooser = new qtFileChooser;
     1006  _teqcObsFileChooser = new qtFileChooser(0, qtFileChooser::Files);
    10071007  _teqcObsFileChooser->setFileName(settings.value("teqcObsFile").toString());
    10081008  _teqcObsFileChooser->setWhatsThis(tr("Specify the full path to an observation file in RINEX v2 or v3 format."));
     
    10101010  _teqcObsFileChooser->setMaximumWidth(15*ww);
    10111011
    1012   _teqcNavFileChooser = new qtFileChooser;
     1012  _teqcNavFileChooser = new qtFileChooser(0, qtFileChooser::Files);
    10131013  _teqcNavFileChooser->setFileName(settings.value("teqcNavFile").toString());
    10141014  _teqcNavFileChooser->setWhatsThis(tr("Specify the full path to a RINEX v2 or v3 navigation file."));
     
    25142514////////////////////////////////////////////////////////////////////////////
    25152515void bncWindow::startPostProcessingTeqc() {
     2516#ifdef USE_POSTPROCESSING
    25162517  _runningPostProcessingTeqc = false;  // TODO
    25172518  enableStartStop();
    25182519  QMessageBox::information(this, "Information",
    25192520                           "Teqc-Processing Not Yet Implemented");
     2521#else
     2522  QMessageBox::information(this, "Information",
     2523                           "Post-Processing Not Permitted");
     2524#endif
    25202525}
    25212526
Note: See TracChangeset for help on using the changeset viewer.