Changeset 2129 in ntrip
- Timestamp:
- Dec 28, 2009, 11:15:47 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncwindow.cpp
r2128 r2129 684 684 _canvas->setLayout(mLayout); 685 685 686 // Enable/Disable all Widgets 687 // -------------------------- 688 slotBncTextChanged(); 689 686 690 // Auto start 687 691 // ---------- … … 1316 1320 // Proxy 1317 1321 //------ 1318 if (sender() == _proxyHostLineEdit) { 1322 if (sender() == 0 || sender() == _proxyHostLineEdit) { 1319 1323 if (!_proxyHostLineEdit->text().isEmpty()) { 1320 1324 _proxyPortLineEdit->setStyleSheet("background-color: white"); … … 1329 1333 // RINEX Observations 1330 1334 // ------------------ 1331 if (sender() == _rnxPathLineEdit) { 1335 if (sender() == 0 || sender() == _rnxPathLineEdit) { 1332 1336 if (!_rnxPathLineEdit->text().isEmpty()) { 1333 1337 _rnxSamplSpinBox->setStyleSheet("background-color: white"); … … 1358 1362 // RINEX Ephemeris 1359 1363 // --------------- 1360 if (sender() == _ephPathLineEdit || sender() == _outEphPortLineEdit) { 1364 if (sender() == 0 || 1365 sender() == _ephPathLineEdit || sender() == _outEphPortLineEdit) { 1361 1366 if (!_ephPathLineEdit->text().isEmpty() || 1362 1367 !_outEphPortLineEdit->text().isEmpty()) { … … 1376 1381 // Broadcast Corrections 1377 1382 // --------------------- 1378 if (sender() == _corrPathLineEdit || sender() == _corrPortLineEdit) { 1383 if (sender() == 0 || 1384 sender() == _corrPathLineEdit || sender() == _corrPortLineEdit) { 1379 1385 if (!_corrPathLineEdit->text().isEmpty() || 1380 1386 !_corrPortLineEdit->text().isEmpty()) { … … 1390 1396 // Feed Engine 1391 1397 // ----------- 1392 if (sender() == _outPortLineEdit || sender() == _outFileLineEdit) { 1398 if (sender() == 0 || 1399 sender() == _outPortLineEdit || sender() == _outFileLineEdit) { 1393 1400 if ( !_outPortLineEdit->text().isEmpty() || 1394 1401 !_outFileLineEdit->text().isEmpty()) { … … 1408 1415 // Serial Output 1409 1416 // ------------- 1410 if (sender() == _serialMountPointLineEdit || 1417 if (sender() == 0 || sender() == _serialMountPointLineEdit || 1411 1418 sender() == _serialAutoNMEAComboBox) { 1412 1419 if (!_serialMountPointLineEdit->text().isEmpty()) { … … 1462 1469 // Outages 1463 1470 // ------- 1464 if (sender() == _obsRateComboBox) { 1471 if (sender() == 0 || sender() == _obsRateComboBox) { 1465 1472 if (!_obsRateComboBox->currentText().isEmpty()) { 1466 1473 _adviseScriptLineEdit->setStyleSheet("background-color: white"); … … 1482 1489 // Miscellaneous 1483 1490 // ------------- 1484 if (sender() == _miscMountLineEdit) { 1491 if (sender() == 0 || sender() == _miscMountLineEdit) { 1485 1492 if (!_miscMountLineEdit->text().isEmpty()) { 1486 1493 _perfIntrComboBox->setStyleSheet("background-color: white"); … … 1498 1505 // PPP Client 1499 1506 // ---------- 1500 if (sender() == _pppMountLineEdit) { 1507 if (sender() == 0 || sender() == _pppMountLineEdit) { 1501 1508 if (!_pppMountLineEdit->text().isEmpty()) { 1502 1509 _pppNMEALineEdit->setPalette(palette_white);
Note:
See TracChangeset
for help on using the changeset viewer.