Changeset 7324 in ntrip


Ignore:
Timestamp:
Sep 25, 2015, 8:53:27 AM (9 years ago)
Author:
weber
Message:

String outEphPort changed to ephOutPort

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncwindow.cpp

    r7298 r7324  
    242242    _ephIntrComboBox->setCurrentIndex(jj);
    243243  }
    244   _outEphPortLineEdit    = new QLineEdit(settings.value("outEphPort").toString());
     244  _ephOutPortLineEdit    = new QLineEdit(settings.value("ephOutPort").toString());
    245245  _ephV3CheckBox = new QCheckBox();
    246246  _ephV3CheckBox->setCheckState(Qt::CheckState(settings.value("ephV3").toInt()));
     
    249249  _ephV3filenameCheckBox->setCheckState(Qt::CheckState(settings.value("ephV3filenames").toInt()));
    250250
    251   connect(_outEphPortLineEdit, SIGNAL(textChanged(const QString &)),
     251  connect(_ephOutPortLineEdit, SIGNAL(textChanged(const QString &)),
    252252          this, SLOT(slotBncTextChanged()));
    253253
     
    713713  eLayout->setColumnMinimumWidth(0,14*ww);
    714714  _ephIntrComboBox->setMaximumWidth(9*ww);
    715   _outEphPortLineEdit->setMaximumWidth(9*ww);
     715  _ephOutPortLineEdit->setMaximumWidth(9*ww);
    716716
    717717  eLayout->addWidget(new QLabel("Saving RINEX navigation files and ephemeris output through IP port.<br>"),0,0,1,70);
     
    721721  eLayout->addWidget(_ephIntrComboBox,                            2, 1);
    722722  eLayout->addWidget(new QLabel("Port"),                          3, 0);
    723   eLayout->addWidget(_outEphPortLineEdit,                         3, 1);
     723  eLayout->addWidget(_ephOutPortLineEdit,                         3, 1);
    724724  eLayout->addWidget(new QLabel("Version 3"),                     4, 0);
    725725  eLayout->addWidget(_ephV3CheckBox,                              4, 1);
     
    12881288  _outPortLineEdit->setWhatsThis(tr("BNC can produce synchronized observations in a plain ASCII format on your local host through an IP port. Specify a port number here to activate this function."));
    12891289  _outUPortLineEdit->setWhatsThis(tr("BNC can produce unsynchronized observations in a plain ASCII format on your local host through an IP port. Specify a port number here to activate this function."));
    1290   _outEphPortLineEdit->setWhatsThis(tr("BNC can produce ephemeris data in RINEX ASCII format on your local host through an IP port. Specify a port number here to activate this function."));
     1290  _ephOutPortLineEdit->setWhatsThis(tr("BNC can produce ephemeris data in RINEX ASCII format on your local host through an IP port. Specify a port number here to activate this function."));
    12911291  _corrPortLineEdit->setWhatsThis(tr("BNC can produce Broadcast Ephemeris Corrections on your local host through an IP port. Specify a port number here to activate this function."));
    12921292  _rnxPathLineEdit->setWhatsThis(tr("Here you specify the path to where the RINEX Observation files will be stored. If the specified directory does not exist, BNC will not create RINEX Observation files."));
     
    17421742  settings.setValue("ephPath",       _ephPathLineEdit->text());
    17431743  settings.setValue("ephIntr",       _ephIntrComboBox->currentText());
    1744   settings.setValue("outEphPort",    _outEphPortLineEdit->text());
     1744  settings.setValue("ephOutPort",    _ephOutPortLineEdit->text());
    17451745  settings.setValue("ephV3filenames", _ephV3filenameCheckBox->checkState());
    17461746  (_ephV3filenameCheckBox->checkState()) ?
     
    18931893
    18941894  BNC_CORE->setCaster(_caster);
    1895   BNC_CORE->setPortEph(_outEphPortLineEdit->text().toInt());
     1895  BNC_CORE->setPortEph(_ephOutPortLineEdit->text().toInt());
    18961896  BNC_CORE->setPortCorr(_corrPortLineEdit->text().toInt());
    18971897  BNC_CORE->initCombination();
     
    22522252  // RINEX Ephemeris
    22532253  // ---------------
    2254   if (sender() == 0 || sender() == _ephPathLineEdit || sender() == _outEphPortLineEdit) {
    2255     enable = !_ephPathLineEdit->text().isEmpty() || !_outEphPortLineEdit->text().isEmpty();
     2254  if (sender() == 0 || sender() == _ephPathLineEdit || sender() == _ephOutPortLineEdit) {
     2255    enable = !_ephPathLineEdit->text().isEmpty() || !_ephOutPortLineEdit->text().isEmpty();
    22562256    enableWidget(enable, _ephIntrComboBox);
    22572257    enableWidget(enable, _ephV3CheckBox);
Note: See TracChangeset for help on using the changeset viewer.