Changeset 8120 in ntrip
- Timestamp:
- Apr 28, 2017, 6:21:22 PM (8 years ago)
- Location:
- branches/BNC_2.12/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/BNC_2.12/src/bnccaster.cpp
r7854 r8120 454 454 // (Re-) Start the configuration timer 455 455 // ----------------------------------- 456 if (settings.value("onTheFlyInterval").toString() == "no") { 457 return; 458 } 459 456 460 int ms = 0; 457 461 -
branches/BNC_2.12/src/bncmain.cpp
r8089 r8120 96 96 " logFile {Logfile, full path [character string]}\n" 97 97 " rnxAppend {Append files [integer number: 0=no,2=yes]}\n" 98 " onTheFlyInterval {Configuration reload interval [character string: 1 day|1 hour|5 min|1 min]}\n"98 " onTheFlyInterval {Configuration reload interval [character string: no|1 day|1 hour|5 min|1 min]}\n" 99 99 " autoStart {Auto start [integer number: 0=no,2=yes]}\n" 100 100 " rawOutFile {Raw output file, full path [character string]}\n" -
branches/BNC_2.12/src/bncsettings.cpp
r8091 r8120 80 80 setValue_p("logFile", ""); 81 81 setValue_p("rnxAppend", "0"); 82 setValue_p("onTheFlyInterval", " 1 day");82 setValue_p("onTheFlyInterval", "no"); 83 83 setValue_p("autoStart", "0"); 84 84 setValue_p("rawOutFile", ""); -
branches/BNC_2.12/src/bncwindow.cpp
r8101 r8120 187 187 _onTheFlyComboBox = new QComboBox(); 188 188 _onTheFlyComboBox->setEditable(false); 189 _onTheFlyComboBox->addItems(QString(" 1 day,1 hour,5 min,1 min").split(","));189 _onTheFlyComboBox->addItems(QString("no, 1 day,1 hour,5 min,1 min").split(",")); 190 190 int ii = _onTheFlyComboBox->findText(settings.value("onTheFlyInterval").toString()); 191 191 if (ii != -1) {
Note:
See TracChangeset
for help on using the changeset viewer.