Changeset 10062 in ntrip for trunk/BNC/src/bncipport.cpp


Ignore:
Timestamp:
May 17, 2023, 1:14:47 PM (11 months ago)
Author:
stuerze
Message:

docu updated

File:
1 edited

Legend:

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

    r8252 r10062  
    3535 * Created:    18-Feb-2009
    3636 *
    37  * Changes:   
     37 * Changes:
    3838 *
    3939 * -----------------------------------------------------------------------*/
     
    8282  _ipHostLineEdit->setWhatsThis(tr("<p>If no proxy server is involved in the communication, BNC allows to retrieve streams via TCP directly from an IP address without using the Ntrip transport protocol.</p><p>Enter the IP address of the stream providing host.</p>"));
    8383  _ipPortLineEdit->setWhatsThis(tr("<p>Enter the IP port number of the stream providing host.</p>"));
    84   _ipMountLineEdit->setWhatsThis(tr("<p>Specify a mountpoint.</p><p>Recommended is a 4-character station ID.<br>Example: FFMJ</p>"));
     84  _ipMountLineEdit->setWhatsThis(tr("<p>Specify a mountpoint.</p><p>Recommended is a 9-character station ID.<br>Example: FFMJ01DEU</p>"));
    8585  _ipFormatLineEdit->setWhatsThis(tr("<p>Specify the stream format.</p><p>Available options are 'RTCM_2', 'RTCM_3', RTNET, and 'ZERO'.</p>"));
    8686  _ipLatLineEdit->setWhatsThis(tr("<p>Enter the approximate latitude of the stream providing receiver in degrees.<p></p>Example: 45.32</p>"));
     
    107107  _buttonWhatsThis = new QPushButton(tr("Help=Shift+F1"), this);
    108108  connect(_buttonWhatsThis, SIGNAL(clicked()), this, SLOT(slotWhatsThis()));
    109  
     109
    110110  _buttonCancel = new QPushButton(tr("Cancel"), this);
    111111  connect(_buttonCancel, SIGNAL(clicked()), this, SLOT(reject()));
     
    148148       !_ipLonLineEdit->text().isEmpty() ) {
    149149
    150     mountPoints->push_back("//" + _ipHostLineEdit->text() + ":" 
    151                                 + _ipPortLineEdit->text() + "/" 
     150    mountPoints->push_back("//" + _ipHostLineEdit->text() + ":"
     151                                + _ipPortLineEdit->text() + "/"
    152152                                + _ipMountLineEdit->text() + " "
    153153                                + _ipFormatLineEdit->text() + " "
Note: See TracChangeset for help on using the changeset viewer.