Fix initiaization order for Calendar.

This commit is contained in:
Mirko Boehm (Endocode) 2013-10-07 00:38:20 +02:00
parent b590226a24
commit a4af408b59

View File

@ -9,9 +9,9 @@ Calendar::Calendar(QObject *parent)
: QObject(parent)
, m_types(Holiday | Event | Todo | Journal)
, m_dayList()
, m_weekList()
, m_days(0)
, m_weeks(0)
, m_weekList()
, m_startDay(Qt::Sunday)
, m_errorMessage()
{