Changeset 7513 in ntrip for trunk/BNC/src/bncwindow.cpp


Ignore:
Timestamp:
Oct 16, 2015, 12:38:42 PM (9 years ago)
Author:
weber
Message:

Keyname 'ignoreSslErrors' changed to 'sslIngoreErrors'

File:
1 edited

Legend:

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

    r7506 r7513  
    174174
    175175  _sslCaCertPathLineEdit   = new QLineEdit(settings.value("sslCaCertPath").toString());
    176   _ignoreSslErrorsCheckBox = new QCheckBox();
    177   _ignoreSslErrorsCheckBox->setCheckState(Qt::CheckState(
    178                                           settings.value("ignoreSslErrors").toInt()));
     176  _sslIgnoreErrorsCheckBox = new QCheckBox();
     177  _sslIgnoreErrorsCheckBox->setCheckState(Qt::CheckState(
     178                                          settings.value("sslIgnoreErrors").toInt()));
    179179
    180180  // General Options
     
    646646  pLayout->addWidget(new QLabel("Default:  " + bncSslConfig::defaultPath()), 3,11, 1,20);
    647647  pLayout->addWidget(new QLabel("Ignore SSL authorization errors"),          4, 0);
    648   pLayout->addWidget(_ignoreSslErrorsCheckBox,                               4, 1, 1,10);
     648  pLayout->addWidget(_sslIgnoreErrorsCheckBox,                               4, 1, 1,10);
    649649  pLayout->addWidget(new QLabel(""),                                         5, 1);
    650650  pLayout->setRowStretch(6, 999);
     
    12951295  _proxyPortLineEdit->setWhatsThis(tr("<p>Enter your proxy server port number in case a proxy is operated in front of BNC.</p>"));
    12961296  _sslCaCertPathLineEdit->setWhatsThis(tr("<p>Communication with an Ntrip broadcaster over SSL requires the exchange of client and/or server certificates. Specify the path to a directory where you save certificates on your system. Don't try communication via SSL if you are not sure wheter this is supported by the involved Ntrip broadcaster. Note that SSL communication is usually done over port 443.</p>"));
    1297   _ignoreSslErrorsCheckBox->setWhatsThis(tr("<p>SSL communication may involve queries coming from the Ntrip broadcaster. Tick 'Ignore SSL authorization erros' if you don't want to be bothered with this.</p>"));
     1297  _sslIgnoreErrorsCheckBox->setWhatsThis(tr("<p>SSL communication may involve queries coming from the Ntrip broadcaster. Tick 'Ignore SSL authorization erros' if you don't want to be bothered with this.</p>"));
    12981298  _outWaitSpinBox->setWhatsThis(tr("<p>When feeding a real-time GNSS network engine waiting for synchronized input epoch by epoch, BNC drops whatever is received later than 'Wait for full obs epoch' seconds. A value of 3 to 5 seconds is recommended, depending on the latency of the incoming streams and the delay acceptable to your real-time GNSS network engine or products.</p>"));
    12991299  _outFileLineEdit->setWhatsThis(tr("Specify the full path to a file where synchronized observations are saved in plain ASCII format. Beware that the size of this file can rapidly increase depending on the number of incoming streams."));
     
    15011501
    15021502  settings.setValue("sslCaCertPath",   _sslCaCertPathLineEdit->text());
    1503   settings.setValue("ignoreSslErrors", _ignoreSslErrorsCheckBox->checkState());
     1503  settings.setValue("sslIgnoreErrors", _sslIgnoreErrorsCheckBox->checkState());
    15041504
    15051505  QMessageBox msgBox;
     
    17321732  settings.setValue("proxyPort",   _proxyPortLineEdit->text());
    17331733  settings.setValue("sslCaCertPath",   _sslCaCertPathLineEdit->text());
    1734   settings.setValue("ignoreSslErrors",  _ignoreSslErrorsCheckBox->checkState());
     1734  settings.setValue("sslIgnoreErrors",  _sslIgnoreErrorsCheckBox->checkState());
    17351735// General
    17361736  settings.setValue("logFile",     _logFileLineEdit->text());
Note: See TracChangeset for help on using the changeset viewer.