Changeset 1472 in ntrip
- Timestamp:
- Jan 15, 2009, 3:41:37 PM (16 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncgetthread.cpp
r1471 r1472 171 171 _perfIntr = 86400; 172 172 if ( settings.value("perfIntr").toString().isEmpty() ) { _perfIntr = 0; } 173 if ( settings.value("perfIntr").toString().indexOf("2 sec") != -1 ) { _perfIntr = 2; } 173 174 if ( settings.value("perfIntr").toString().indexOf("10 sec") != -1 ) { _perfIntr = 10; } 174 175 if ( settings.value("perfIntr").toString().indexOf("1 min") != -1 ) { _perfIntr = 60; } -
trunk/BNC/bncwindow.cpp
r1471 r1472 276 276 _perfIntrComboBox->setMaximumWidth(9*ww); 277 277 _perfIntrComboBox->setEditable(false); 278 _perfIntrComboBox->addItems(QString(", 10 sec,1 min,5 min,15 min,1 hour,6 hours,1 day").split(","));278 _perfIntrComboBox->addItems(QString(",2 sec, 10 sec,1 min,5 min,15 min,1 hour,6 hours,1 day").split(",")); 279 279 int ll = _perfIntrComboBox->findText(settings.value("perfIntr").toString()); 280 280 if (ll != -1) {
Note:
See TracChangeset
for help on using the changeset viewer.