diff --git a/AUTHORS b/AUTHORS index be39f8eaa..e1bb88d12 100644 --- a/AUTHORS +++ b/AUTHORS @@ -21,6 +21,7 @@ The following submitted code, packages or analysis, and deserve special thanks: Pietro Cerutti Alexander Neumann Emil Sköldberg + Johannes Schlatow Thanks to the following, who submitted detailed bug reports and excellent suggestions: Eugene Kramer diff --git a/ChangeLog b/ChangeLog index 936503256..eac46a9f3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -12,6 +12,8 @@ annotations. + Deleting a task no longer clobbers any recorded end date (thanks to Seneca Cunningham). + + Fixed bug #402 which failed compilation on Arch Linux (thanks to + Johannes Schlatow). ------ old releases ------------------------------ diff --git a/src/Date.cpp b/src/Date.cpp index 4cab67984..023f39ec0 100644 --- a/src/Date.cpp +++ b/src/Date.cpp @@ -792,7 +792,7 @@ bool Date::sameYear (const Date& rhs) //////////////////////////////////////////////////////////////////////////////// Date Date::operator+ (const int delta) { - return Date::Date (mT + delta); + return Date (mT + delta); } ////////////////////////////////////////////////////////////////////////////////