Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix(date.format): fix #738 to always pass valid date
  • Loading branch information
guanlisheng committed Feb 29, 2016
1 parent 2845511 commit f5343df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/reports/mmDateRange.cpp
Expand Up @@ -207,7 +207,7 @@ mmAllTime::mmAllTime()
{
this->title_ = wxTRANSLATE("Over Time");
this->start_date_.SetDay(1).SetMonth(wxDateTime::Jan).SetYear(1);
this->end_date_.SetYear(9999);
this->end_date_ = wxDateTime(31, wxDateTime::Dec, 9999);
}

const bool mmAllTime::is_with_date() const
Expand Down

0 comments on commit f5343df

Please sign in to comment.