Changeset 588 in ntrip for trunk/BNC/bncwindow.cpp


Ignore:
Timestamp:
Nov 24, 2007, 8:35:25 PM (16 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncwindow.cpp

    r587 r588  
    149149  _outPortLineEdit->setMaximumWidth(9*ww);
    150150  _outPortLineEdit->setWhatsThis(tr("<p>BNC makes synchronized observations available in a binary format on your local host (IP 127.0.0.1) through an IP port. Enter an IP port number to activate this function.</p><p>Default is an empty option field, meaning that no binary output is generated.</p>"));
    151   _outPortEphLineEdit    = new QLineEdit(settings.value("outEphPort").toString());
    152   _outPortEphLineEdit->setMaximumWidth(9*ww);
    153   _outPortEphLineEdit->setWhatsThis(tr("<p>BNC makes broadcast ephemeris available in ASCII format on your local host through an IP port</p>"));
     151  _outEphPortLineEdit    = new QLineEdit(settings.value("outEphPort").toString());
     152  _outEphPortLineEdit->setMaximumWidth(9*ww);
     153  _outEphPortLineEdit->setWhatsThis(tr("<p>BNC makes broadcast ephemeris available in ASCII format on your local host through an IP port</p>"));
    154154  _rnxPathLineEdit    = new QLineEdit(settings.value("rnxPath").toString());
    155155  _rnxPathLineEdit->setWhatsThis(tr("<p>Observations can be converted to RINEX. Enter a path for saving the RINEX files in a directory. If this directory does not exist, BNC will not create RINEX files.</p><p>Default value for 'RINEX directory' is an empty option field, meaning that streams are not converted to RINEX.</p>"));
     
    292292  bl1->addWidget(new QLabel("Observations (binary)"));
    293293  bl1->addStretch();
    294   bl1->addWidget(_outPortEphLineEdit);
     294  bl1->addWidget(_outEphPortLineEdit);
    295295  bl1->addWidget(new QLabel("Ephemeris (ascii)"));
    296296  layout->addLayout(bl1, 3, 2, 1, 2);
     
    465465  settings.setValue("outFile",     _outFileLineEdit->text());
    466466  settings.setValue("outPort",     _outPortLineEdit->text());
    467   settings.setValue("outEphPort",  _outPortEphLineEdit->text());
     467  settings.setValue("outEphPort",  _outEphPortLineEdit->text());
    468468  settings.setValue("rnxPath",     _rnxPathLineEdit->text());
    469469  settings.setValue("ephPath",     _ephPathLineEdit->text());
Note: See TracChangeset for help on using the changeset viewer.