Changeset 6237 in ntrip


Ignore:
Timestamp:
Oct 15, 2014, 3:28:19 PM (10 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src
Files:
2 edited

Legend:

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

    r6173 r6237  
    212212  _rnxV3CheckBox = new QCheckBox();
    213213  _rnxV3CheckBox->setCheckState(Qt::CheckState(settings.value("rnxV3").toInt()));
     214  QString hlp = settings.value("rnxSkel").toString();
     215  if (hlp.isEmpty()) {
     216    hlp = "CWPX_?";
     217  }
     218  _rnxV2Priority = new QLineEdit(hlp);
    214219
    215220  connect(_rnxPathLineEdit, SIGNAL(textChanged(const QString &)),
     
    664669  oLayout->addWidget(new QLabel("Version 3"),                      5, 0);
    665670  oLayout->addWidget(_rnxV3CheckBox,                               5, 1);
     671  oLayout->addWidget(new QLabel("Version 2 Signal Priority"),      5, 2);
     672  oLayout->addWidget(_rnxV2Priority,                               5, 3, 1, 22);
    666673  oLayout->addWidget(new QLabel(" "),                              6, 0);
    667674  ogroup->setLayout(oLayout);
     
    15811588  settings.setValue("rnxScript",   _rnxScrpLineEdit->text());
    15821589  settings.setValue("rnxV3",       _rnxV3CheckBox->checkState());
     1590  settings.setValue("rnxV2Priority",_rnxV2Priority->text());
    15831591// RINEX Ephemeris
    15841592  settings.setValue("ephPath",     _ephPathLineEdit->text());
  • trunk/BNC/src/bncwindow.h

    r6172 r6237  
    151151
    152152    QCheckBox* _rnxV3CheckBox;
     153    QLineEdit* _rnxV2Priority;
    153154    QCheckBox* _ephV3CheckBox;
    154155    QLineEdit* _rnxSkelLineEdit;
Note: See TracChangeset for help on using the changeset viewer.