From a31e9a5a3cba7a6287a4bcc55a34e5b79df310b8 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Tue, 11 May 2010 23:52:12 -0400 Subject: [PATCH] Bug Fix - #404 - Refixed #404 that got lost in a recent merge. --- src/Date.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Date.cpp b/src/Date.cpp index 84df1ca8c..f9d1a4181 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); } ////////////////////////////////////////////////////////////////////////////////