From 014016620f9536716b085b53636aac9c2d5db057 Mon Sep 17 00:00:00 2001 From: Karsten Heimrich Date: Mon, 1 Sep 2008 13:16:14 +0000 Subject: [PATCH] * Month and Day should be used from the passed date git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27266 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kits/shared/DateTime.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kits/shared/DateTime.cpp b/src/kits/shared/DateTime.cpp index 19a68cd780..fef20d5b17 100755 --- a/src/kits/shared/DateTime.cpp +++ b/src/kits/shared/DateTime.cpp @@ -191,7 +191,7 @@ BDate::Date() const bool BDate::SetDate(const BDate& date) { - return _SetDate(date.fYear, fMonth, fDay); + return _SetDate(date.fYear, date.fMonth, date.fDay); }