Changeset 1471 in ntrip


Ignore:
Timestamp:
Jan 15, 2009, 3:24:06 PM (15 years ago)
Author:
weber
Message:

* empty log message *

Location:
trunk/BNC
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncgetthread.cpp

    r1458 r1471  
    171171  _perfIntr = 86400;
    172172  if ( settings.value("perfIntr").toString().isEmpty() ) { _perfIntr = 0; }
     173  if ( settings.value("perfIntr").toString().indexOf("10 sec") != -1 ) { _perfIntr = 10; }
    173174  if ( settings.value("perfIntr").toString().indexOf("1 min") != -1 ) { _perfIntr = 60; }
    174175  if ( settings.value("perfIntr").toString().indexOf("5 min") != -1 ) { _perfIntr = 300; }
  • trunk/BNC/bnctabledlg.cpp

    r1470 r1471  
    113113  mainLayout->addLayout(editLayout);
    114114
    115   _buttonCasterTable->setWhatsThis(tr("<p>Hit 'Show' for a table of known NTRIP broadcaster installations as maintained at www.rtcm-ntrip.org/home.</p><p>A window opens which allows to select a broadcaster for stream retrieval.</p>"));
     115  _buttonCasterTable->setWhatsThis(tr("<p>Hit 'Show' for a table of known NTRIP broadcaster installations as maintained at <u>www.rtcm-ntrip.org/home.</u></p><p>A window opens which allows to select a broadcaster for stream retrieval.</p>"));
    116116  _ntripVersionComboBox->setWhatsThis(tr("<p>Select the NTRIP transport protocol version you want to use. Implemented options are:<br>&nbsp; 1:&nbsp; NTRIP version 1, TCP/IP<br>&nbsp; 2:&nbsp; NTRIP version 2, TCP/IP mode<br>&nbsp; R:&nbsp; NTRIP Version 2, RTSP/RTP mode<br>Select option '1' if you are not sure whether the NTRIP broadcaster supports NTRIP version 2.</p><p>Note that RTSP/RTP (option 'R') is sometimes not supported by mobile Internet Service Providers.</p>"));
    117117
     
    495495  _whatsThisCasterTableButton->setMaximumWidth(12*ww);
    496496
    497   _casterTable->setWhatsThis(tr("<p>Select an NTRIP broadcaster and hit 'OK'.</p><p>See http://www.rtcm-ntrip.org/home for further details on known NTRIP broadcaster installations.</u>."));
     497  _casterTable->setWhatsThis(tr("<p>Select an NTRIP broadcaster and hit 'OK'.</p><p>See <u>http://www.rtcm-ntrip.org/home</u> for further details on known NTRIP broadcaster installations.</u>."));
    498498
    499499  QGridLayout* dlgLayout = new QGridLayout();
  • trunk/BNC/bncwindow.cpp

    r1467 r1471  
    276276  _perfIntrComboBox->setMaximumWidth(9*ww);
    277277  _perfIntrComboBox->setEditable(false);
    278   _perfIntrComboBox->addItems(QString(",1 min,5 min,15 min,1 hour,6 hours,1 day").split(","));
     278  _perfIntrComboBox->addItems(QString(",10 sec,1 min,5 min,15 min,1 hour,6 hours,1 day").split(","));
    279279  int ll = _perfIntrComboBox->findText(settings.value("perfIntr").toString());
    280280  if (ll != -1) {
Note: See TracChangeset for help on using the changeset viewer.