mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 03:00:43 +00:00
Clean up code around reporting missing value summaries
This commit is contained in:
parent
3ecce66397
commit
81856e0866
@ -1139,15 +1139,17 @@ void Session::updateCountSummary(ChannelID code)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( valsum.size() == 0) {
|
if ( valsum.size() == 0) { // no value summary for this channel
|
||||||
using namespace schema;
|
using namespace schema;
|
||||||
Channel *ch_p = channel.channels[code];
|
Channel *ch_p = channel.channels[code];
|
||||||
if ( ! ch_p->isNull() ) {
|
if ( ! ch_p->isNull() ) { // the channel was found in the channel list
|
||||||
if ( (ch_p->type() & FLAG) == FLAG )
|
if ( ! ((ch_p->type() & FLAG) == FLAG) ) { // the channel is not a flag type
|
||||||
return;
|
qDebug() << "No valuesummary for channel " << ch_p->label(); // so tell about missing summary
|
||||||
qDebug() << "No valuesummary for channel " << ch_p->label();
|
}
|
||||||
|
} else {
|
||||||
|
// This channel wasn't added to the channel list, so we can't check its type
|
||||||
|
qDebug() << "No valuesummary for channel (hex)" << QString::number(code, 16);
|
||||||
}
|
}
|
||||||
qDebug() << "No valuesummary for channel (hex)" << QString::number(code, 16);
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user