Skip to content

Commit f2d2f32

Browse files
authored
Merge pull request #654 from ourairquality/winapp-l39
winapp rtknavi: remove dup label, update tab order
2 parents 7c6bd58 + c26ea0b commit f2d2f32

32 files changed

Lines changed: 3171 additions & 2728 deletions

app/qtapp/rtkconv_qt/convopt.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ void ConvOptDialog::loadOptions(QSettings &ini)
248248
{
249249
QString mask = "1111111111111111111111111111111111111111111111111111111111111111111111";
250250

251-
rinexVersion = ini.value("opt/rnxver", 6).toInt();
251+
rinexVersion = ini.value("opt/rnxver", 7).toInt();
252252
rinexFile = ini.value("opt/rnxfile", 0).toInt();
253253
rinexStationCode = ini.value("opt/rnxcode", "0000").toString();
254254
runBy = ini.value("opt/runby", "").toString();
@@ -273,8 +273,8 @@ void ConvOptDialog::loadOptions(QSettings &ini)
273273
comment[1] = ini.value("opt/comment1", "").toString();
274274
receiverOptions = ini.value("opt/rcvoption", "").toString();
275275
navSys = ini.value("opt/navsys", 0xff).toInt();
276-
observationType = ini.value("opt/obstype", 0xF).toInt();
277-
frequencyType = ini.value("opt/freqtype", 0x7).toInt();
276+
observationType = ini.value("opt/obstype", OBSTYPE_ALL).toInt();
277+
frequencyType = ini.value("opt/freqtype", FREQTYPE_ALL).toInt();
278278
excludedSatellites = ini.value("opt/exsats", "").toString();
279279
traceLevel = ini.value("opt/tracelevel", 0).toInt();
280280
rinexTime.time = ini.value("opt/rnxtime", 0).toInt();

app/qtapp/rtkconv_qt/convopt.ui

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -764,27 +764,39 @@
764764
<property name="text">
765765
<string>L3</string>
766766
</property>
767+
<property name="checked">
768+
<bool>true</bool>
769+
</property>
767770
</widget>
768771
</item>
769772
<item>
770773
<widget class="QCheckBox" name="cBFreq4">
771774
<property name="text">
772775
<string>L4</string>
773776
</property>
777+
<property name="checked">
778+
<bool>true</bool>
779+
</property>
774780
</widget>
775781
</item>
776782
<item>
777783
<widget class="QCheckBox" name="cBFreq5">
778784
<property name="text">
779785
<string>L5</string>
780786
</property>
787+
<property name="checked">
788+
<bool>true</bool>
789+
</property>
781790
</widget>
782791
</item>
783792
<item>
784793
<widget class="QCheckBox" name="cBFreq6">
785794
<property name="text">
786795
<string>L6</string>
787796
</property>
797+
<property name="checked">
798+
<bool>true</bool>
799+
</property>
788800
</widget>
789801
</item>
790802
<item>

0 commit comments

Comments
 (0)