mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-21 23:55:13 -05:00
Fix Qt5 compilation
This commit is contained in:
parent
c3a1c8db0e
commit
84960eff03
@ -697,7 +697,6 @@ bool RS41Subframe::getHumidityPressureCal(float *vec, float *mat) const
|
||||
for (int i = 0; i < 12; i++) {
|
||||
mat[i] = 0.0f;
|
||||
}
|
||||
qDebug() << "hasHumidityPressureCal: false";
|
||||
return false;
|
||||
}
|
||||
}
|
||||
@ -709,8 +708,8 @@ QString RS41Subframe::getType() const
|
||||
{
|
||||
QByteArray bytes = m_subframe.mid(0x218, 10);
|
||||
|
||||
while ((bytes.size() > 0) && (bytes.back() == 0)) {
|
||||
bytes.removeLast();
|
||||
while ((bytes.size() > 0) && (bytes.back() == '\0')) {
|
||||
bytes.remove(bytes.size() - 1, 1);
|
||||
}
|
||||
|
||||
return QString(bytes).trimmed();
|
||||
|
Loading…
Reference in New Issue
Block a user