Changeset 3271 in ntrip
- Timestamp:
- Apr 10, 2011, 11:50:10 AM (14 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncsettings.cpp
r3243 r3271 105 105 setValue("nmeaPort", ""); 106 106 setValue("combineStreams", ""); 107 setValue("uploadMountpointsOut", ""); 107 setValue("uploadMountpointsOut",""); 108 setValue("uploadIntr", "1 day"); 109 setValue("uploadSampl", "0"); 108 110 setValue("uploadEphHost", ""); 109 111 setValue("uploadEphPort", ""); 110 112 setValue("uploadEphPassword", ""); 111 113 setValue("uploadEphMountpoint", ""); 112 setValue("uploadEphSample", " ");114 setValue("uploadEphSample", "5"); 113 115 sync(); 114 116 } -
trunk/BNC/bncwindow.cpp
r3254 r3271 492 492 _uploadSamplSpinBox = new QSpinBox; 493 493 _uploadIntrComboBox->setEditable(false); 494 _uploadIntrComboBox->addItems(QString("1 min,2 min,5 min,10 min,15 min,30 min,1 hour,1 day").split(","));494 _uploadIntrComboBox->addItems(QString("1 day,1 hour, 30 min,15 min,10 min,5 min,2 min,1 min").split(",")); 495 495 ii = _uploadIntrComboBox->findText(settings.value("uploadIntr").toString()); 496 496 if (ii != -1) { … … 516 516 _uploadEphMountpointLineEdit = new QLineEdit(settings.value("uploadEphMountpoint").toString()); 517 517 _uploadEphSampleSpinBox = new QSpinBox; 518 _uploadEphSampleSpinBox->setMinimum( 0);518 _uploadEphSampleSpinBox->setMinimum(5); 519 519 _uploadEphSampleSpinBox->setMaximum(60); 520 520 _uploadEphSampleSpinBox->setSingleStep(5);
Note:
See TracChangeset
for help on using the changeset viewer.