Changeset 2129 in ntrip


Ignore:
Timestamp:
Dec 28, 2009, 11:15:47 AM (14 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncwindow.cpp

    r2128 r2129  
    684684  _canvas->setLayout(mLayout);
    685685
     686  // Enable/Disable all Widgets
     687  // --------------------------
     688  slotBncTextChanged();
     689
    686690  // Auto start
    687691  // ----------
     
    13161320  // Proxy
    13171321  //------
    1318   if (sender() == _proxyHostLineEdit) {
     1322  if (sender() == 0 || sender() == _proxyHostLineEdit) {
    13191323    if (!_proxyHostLineEdit->text().isEmpty()) {
    13201324      _proxyPortLineEdit->setStyleSheet("background-color: white");
     
    13291333  // RINEX Observations
    13301334  // ------------------
    1331   if (sender() == _rnxPathLineEdit) {
     1335  if (sender() == 0 || sender() == _rnxPathLineEdit) {
    13321336    if (!_rnxPathLineEdit->text().isEmpty()) {
    13331337      _rnxSamplSpinBox->setStyleSheet("background-color: white");
     
    13581362  // RINEX Ephemeris
    13591363  // ---------------
    1360   if (sender() == _ephPathLineEdit || sender() == _outEphPortLineEdit) {
     1364  if (sender() == 0 ||
     1365      sender() == _ephPathLineEdit || sender() == _outEphPortLineEdit) {
    13611366    if (!_ephPathLineEdit->text().isEmpty() ||
    13621367        !_outEphPortLineEdit->text().isEmpty()) {
     
    13761381  // Broadcast Corrections
    13771382  // ---------------------
    1378   if (sender() == _corrPathLineEdit || sender() == _corrPortLineEdit) {
     1383  if (sender() == 0 ||
     1384      sender() == _corrPathLineEdit || sender() == _corrPortLineEdit) {
    13791385    if (!_corrPathLineEdit->text().isEmpty() ||
    13801386        !_corrPortLineEdit->text().isEmpty()) {
     
    13901396  // Feed Engine
    13911397  // -----------
    1392   if (sender() == _outPortLineEdit || sender() == _outFileLineEdit) {
     1398  if (sender() == 0 ||
     1399      sender() == _outPortLineEdit || sender() == _outFileLineEdit) {
    13931400    if ( !_outPortLineEdit->text().isEmpty() ||
    13941401         !_outFileLineEdit->text().isEmpty()) {
     
    14081415  // Serial Output
    14091416  // -------------
    1410   if (sender() == _serialMountPointLineEdit ||
     1417  if (sender() == 0 || sender() == _serialMountPointLineEdit ||
    14111418      sender() == _serialAutoNMEAComboBox) {
    14121419    if (!_serialMountPointLineEdit->text().isEmpty()) {
     
    14621469  // Outages
    14631470  // -------
    1464   if (sender() == _obsRateComboBox) {
     1471  if (sender() == 0 || sender() == _obsRateComboBox) {
    14651472    if (!_obsRateComboBox->currentText().isEmpty()) {
    14661473      _adviseScriptLineEdit->setStyleSheet("background-color: white");
     
    14821489  // Miscellaneous
    14831490  // -------------
    1484   if (sender() == _miscMountLineEdit) {
     1491  if (sender() == 0 || sender() == _miscMountLineEdit) {
    14851492    if (!_miscMountLineEdit->text().isEmpty()) {
    14861493      _perfIntrComboBox->setStyleSheet("background-color: white");
     
    14981505  // PPP Client
    14991506  // ----------
    1500   if (sender() == _pppMountLineEdit) {
     1507  if (sender() == 0 || sender() == _pppMountLineEdit) {
    15011508    if (!_pppMountLineEdit->text().isEmpty()) {
    15021509      _pppNMEALineEdit->setPalette(palette_white);
Note: See TracChangeset for help on using the changeset viewer.