mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
DV64 Out of sequence check, apply stretch to welcome page textbox
This commit is contained in:
parent
d26e414140
commit
ab813e4214
@ -1326,12 +1326,15 @@ int IntellipapLoader::OpenDV6(const QString & path)
|
||||
|
||||
SR = summaryList.begin();
|
||||
|
||||
for (int r=0; r<numLrecs; ++r) {
|
||||
unsigned int lastts1 = 0;
|
||||
|
||||
if (SR != summaryList.end()) for (int r=0; r<numLrecs; ++r) {
|
||||
ts1 = ((data[4] << 24) | (data[3] << 16) | (data[2] << 8) | data[1])+ep; // session start time
|
||||
|
||||
if (SR == summaryList.end())
|
||||
if (ts1 < lastts1) {
|
||||
qDebug() << "Corruption/Out of sequence data found in L.bin, aborting";
|
||||
break;
|
||||
|
||||
}
|
||||
lastts1=ts1;
|
||||
DV6_S_Record *R = &SR.value();
|
||||
while (ts1 > R->stop_time) {
|
||||
if (leak && sess) {
|
||||
|
@ -418,9 +418,9 @@ border: 2px solid #56789a; border-radius: 10px;
|
||||
<item>
|
||||
<widget class="QTextBrowser" name="cpapInfo">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Minimum">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="MinimumExpanding">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
<verstretch>1</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="maximumSize">
|
||||
@ -496,9 +496,9 @@ p, li { white-space: pre-wrap; }
|
||||
<item>
|
||||
<widget class="QTextBrowser" name="oxiInfo">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Minimum">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="MinimumExpanding">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
<verstretch>1</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="maximumSize">
|
||||
|
Loading…
Reference in New Issue
Block a user