From 07b56ea7ee1f29d0fb67c3b8c46f87178afc02db Mon Sep 17 00:00:00 2001 From: "mvl%exedo.nl" Date: Mon, 13 Jun 2005 09:36:45 +0000 Subject: [PATCH] Make NewCalDateTime do the right thing. bug 297530, r=pavlov --- calendar/base/src/calItemBase.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/calendar/base/src/calItemBase.js b/calendar/base/src/calItemBase.js index 3201524cea9e..ef4038b6af10 100644 --- a/calendar/base/src/calItemBase.js +++ b/calendar/base/src/calItemBase.js @@ -49,7 +49,7 @@ const HashPropertyBag = new Components.Constructor(kHashPropertyBagContractID, k function NewCalDateTime(aJSDate) { var c = new CalDateTime(); if (aJSDate) - c.jsDate = c; + c.jsDate = aJSDate; return c; }