Changeset 45918 in webkit for trunk/JavaScriptCore/wtf/DateMath.cpp
- Timestamp:
- Jul 15, 2009, 9:58:36 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/DateMath.cpp
r45908 r45918 3 3 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved. 4 4 * Copyright (C) 2009 Google Inc. All rights reserved. 5 * Copyright (C) 2007-2009 Torch Mobile, Inc. 5 6 * 6 7 * The Original Code is Mozilla Communicator client code, released … … 518 519 tm.isDST = dstOff != 0.0; 519 520 520 tm.utcOffset = static_cast<long>((dstOff + utcOff) / msPerSecond);521 tm.utcOffset = outputIsUTC ? 0 : static_cast<long>((dstOff + utcOff) / msPerSecond); 521 522 tm.timeZone = NULL; 522 523 }
Note:
See TracChangeset
for help on using the changeset viewer.