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


Ignore:
Timestamp:
Feb 28, 2019, 3:17:33 PM (5 years ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

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

    r8617 r8621  
    307307  _outFileLineEdit    = new QLineEdit(settings.value("outFile").toString());
    308308  _outUPortLineEdit   = new QLineEdit(settings.value("outUPort").toString());
    309   _printLockTimeCheckBox = new QCheckBox();
    310   _printLockTimeCheckBox->setCheckState(Qt::CheckState(settings.value("printLockTime").toInt())); 
     309  _outLockTimeCheckBox = new QCheckBox();
     310  _outLockTimeCheckBox->setCheckState(Qt::CheckState(settings.value("outLockTime").toInt()));
    311311
    312312  connect(_outPortLineEdit, SIGNAL(textChanged(const QString &)),
     
    315315  connect(_outFileLineEdit, SIGNAL(textChanged(const QString &)),
    316316          this, SLOT(slotBncTextChanged()));
    317          
    318   connect(_printLockTimeCheckBox, SIGNAL(stateChanged(int)),
     317
     318  connect(_outLockTimeCheckBox, SIGNAL(stateChanged(int)),
    319319          this, SLOT(slotBncTextChanged()));
    320320
     
    830830  sLayout->addWidget(_outUPortLineEdit,                             4, 1);
    831831  sLayout->addWidget(new QLabel("Print lock time"),                 5, 0);
    832   sLayout->addWidget(_printLockTimeCheckBox,                        5, 1);
     832  sLayout->addWidget(_outLockTimeCheckBox,                        5, 1);
    833833  sLayout->addWidget(new QLabel(""),                                6, 1);
    834834  sLayout->setRowStretch(7, 999);
     
    13491349  _outFileLineEdit->setWhatsThis(tr("<p>Specify the full path to a file where synchronized observations are saved in plain ASCII format.</p><p>Beware that the size of this file can rapidly increase depending on the number of incoming streams. <i>[key: outFile]</i></p>"));
    13501350  _outUPortLineEdit->setWhatsThis(tr("<p>BNC can produce unsynchronized observations in a plain ASCII format on your local host via IP port.</p><p>Specify a port number to activate this function. <i>[key: outUPort]</i></p>"));
    1351   _printLockTimeCheckBox->setWhatsThis(tr("<p>Print the lock time in seconds in the feed engine output.</p>"));
     1351  _outLockTimeCheckBox->setWhatsThis(tr("<p>Print the lock time in seconds in the feed engine output.<i>[key: outLockTime]</i></p>"));
    13521352
    13531353  // WhatsThis, Serial Output
     
    15221522  delete _outFileLineEdit;
    15231523  delete _outUPortLineEdit;
    1524   delete _printLockTimeCheckBox; 
     1524  delete _outLockTimeCheckBox;
    15251525  delete _serialMountPointLineEdit;
    15261526  delete _serialPortNameLineEdit;
     
    19751975  settings.setValue("outSampl",    _outSamplComboBox->currentText());
    19761976  settings.setValue("outFile",     _outFileLineEdit->text());
    1977   settings.setValue("printLockTime",_printLockTimeCheckBox->checkState());    settings.setValue("outUPort",    _outUPortLineEdit->text());
     1977  settings.setValue("outLockTime",_outLockTimeCheckBox->checkState());    settings.setValue("outUPort",    _outUPortLineEdit->text());
    19781978
    19791979// Serial Output
Note: See TracChangeset for help on using the changeset viewer.