Ignore:
Timestamp:
Jun 17, 2009, 9:39:56 AM (16 years ago)
Author:
[email protected]
Message:

2009-06-17 George Staikos <[email protected]>

Reviewed by Adam Treat.

https://bugs.webkit.org/show_bug.cgi?id=23155
Move WIN_CE -> WINCE as previously discussed with Qt WINCE folks.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/wtf/CurrentTime.cpp

    r41149 r44765  
    108108static double lowResUTCTime()
    109109{
    110 #if PLATFORM(WIN_CE)
     110#if PLATFORM(WINCE)
    111111    SYSTEMTIME systemTime;
    112112    GetSystemTime(&systemTime);
     
    121121    time_t timet = mktime(&tmtime);
    122122    return timet * msPerSecond + systemTime.wMilliseconds;
    123 #else // PLATFORM(WIN_CE)
     123#else
    124124    struct _timeb timebuffer;
    125125    _ftime(&timebuffer);
    126126    return timebuffer.time * msPerSecond + timebuffer.millitm;
    127 #endif // PLATFORM(WIN_CE)
     127#endif
    128128}
    129129
Note: See TracChangeset for help on using the changeset viewer.