- Timestamp:
- Feb 18, 2009, 7:11:24 PM (16 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncipport.cpp
r1614 r1615 49 49 bncIpPort::bncIpPort(QWidget* parent) : QDialog(parent) { 50 50 51 setMinimumSize(400,150); 51 52 QVBoxLayout* mainLayout = new QVBoxLayout(this); 52 53 53 QGridLayout* editLayout = new QGridLayout; 54 54 55 setWindowTitle(tr("Add Stream from IP Port"));55 setWindowTitle(tr("Add Stream from TCP/IP Port")); 56 56 57 57 _ipHostLineEdit = new QLineEdit(); … … 71 71 // WhatsThis 72 72 // --------- 73 _ipHostLineEdit->setWhatsThis(tr("<p>BNC allows to retrieve streams directly from an IP address without using the NTRIP transport protocol.</p><p>Enter the IP address of the stream providing host.</p>"));73 _ipHostLineEdit->setWhatsThis(tr("<p>BNC allows to retrieve streams directly via TCP from an IP address without using the NTRIP transport protocol.</p><p>Enter the IP address of the stream providing host.</p>")); 74 74 _ipPortLineEdit->setWhatsThis(tr("<p>Enter the port number of the stream providing host.</p>")); 75 75 _ipMountLineEdit->setWhatsThis(tr("<p>Specify a mountpoint.</p><p>Recommended is a 4-character reference station ID. Example: FFMJ</p>")); -
trunk/BNC/bncwindow.cpp
r1610 r1615 778 778 779 779 QPushButton *buttonNtrip = msgBox.addButton(tr("Caster"), QMessageBox::ActionRole); 780 QPushButton *buttonIP = msgBox.addButton(tr(" IP port"), QMessageBox::ActionRole);780 QPushButton *buttonIP = msgBox.addButton(tr("TCP/IP port"), QMessageBox::ActionRole); 781 781 QPushButton *buttonCancel = msgBox.addButton(tr("Cancel"), QMessageBox::ActionRole); 782 782
Note:
See TracChangeset
for help on using the changeset viewer.