save for the weekend

This commit is contained in:
2024-06-07 13:33:04 +02:00
parent 48fccafe76
commit 34fbefc138
3 changed files with 181 additions and 23 deletions

View File

@@ -146,7 +146,10 @@ struct CALCULATE_LIBRARY_API CalcState {
s = CalcState::ABOVE_MAX_PARKING_TIME;
break;
}
return s + ":" + m_desc;
if (m_desc.size() > 0) {
return s + ":" + m_desc;
}
return s;
}
explicit operator QString () const noexcept {