Minor: removed default parameter in constructor

This commit is contained in:
Gerhard Hoffmann 2024-09-27 13:47:26 +02:00
parent fd04531474
commit d117328bed

View File

@ -90,9 +90,9 @@ struct CALCULATE_LIBRARY_API CalcState {
, m_desc(desc) { , m_desc(desc) {
} }
explicit CalcState(State state, QString desc = "", explicit CalcState(State state, QString desc,
QTime const &from = QTime(), QTime const &from,
QTime const &until = QTime()) QTime const &until)
: m_status(state) : m_status(state)
, m_desc(desc) , m_desc(desc)
, m_allowedTimeRange(from, until) { , m_allowedTimeRange(from, until) {