Changeset 6686 in ntrip for trunk


Ignore:
Timestamp:
Mar 17, 2015, 9:39:04 PM (9 years ago)
Author:
weber
Message:

NMEA upload function modified

File:
1 edited

Legend:

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

    r6684 r6686  
    323323  }
    324324  _serialAutoNMEAComboBox  = new QComboBox();
    325   _serialAutoNMEAComboBox->addItems(QString("Auto,Manual").split(","));
     325  _serialAutoNMEAComboBox->addItems(QString("no,Auto,Manual").split(","));
    326326  kk = _serialAutoNMEAComboBox->findText(settings.value("serialAutoNMEA").toString());
    327327  if (kk != -1) {
     
    21532153    bool enable2 = enable && _serialAutoNMEAComboBox->currentText() == "Auto";
    21542154    enableWidget(enable2, _serialFileNMEALineEdit);
    2155     bool enable3 = enable && _serialAutoNMEAComboBox->currentText() != "Auto";
     2155    bool enable3 = enable && _serialAutoNMEAComboBox->currentText() == "Manual";
    21562156    enableWidget(enable3, _serialHeightNMEALineEdit);
    21572157  }
Note: See TracChangeset for help on using the changeset viewer.