Changeset 6686 in ntrip
- Timestamp:
- Mar 17, 2015, 9:39:04 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bncwindow.cpp
r6684 r6686 323 323 } 324 324 _serialAutoNMEAComboBox = new QComboBox(); 325 _serialAutoNMEAComboBox->addItems(QString(" Auto,Manual").split(","));325 _serialAutoNMEAComboBox->addItems(QString("no,Auto,Manual").split(",")); 326 326 kk = _serialAutoNMEAComboBox->findText(settings.value("serialAutoNMEA").toString()); 327 327 if (kk != -1) { … … 2153 2153 bool enable2 = enable && _serialAutoNMEAComboBox->currentText() == "Auto"; 2154 2154 enableWidget(enable2, _serialFileNMEALineEdit); 2155 bool enable3 = enable && _serialAutoNMEAComboBox->currentText() != "Auto";2155 bool enable3 = enable && _serialAutoNMEAComboBox->currentText() == "Manual"; 2156 2156 enableWidget(enable3, _serialHeightNMEALineEdit); 2157 2157 }
Note:
See TracChangeset
for help on using the changeset viewer.