Ignore:
Timestamp:
Dec 20, 2006, 12:25:51 PM (18 years ago)
Author:
andersca
Message:
  • kjs/string_object.cpp: (localeCompare): Another speculative Win32 fix.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/string_object.cpp

    r18355 r18356  
    289289{
    290290    return CompareStringW(LOCALE_USER_DEFAULT, 0,
    291                           a.data(), a.size(),
    292                           b.data(), b.size());
     291                          reinterpret_cast<LPCWSTR>(a.data()), a.size(),
     292                          reinterpret_cast<LPCWSTR>(b.data()), b.size());
    293293}
    294294#elif PLATFORM(CF)
Note: See TracChangeset for help on using the changeset viewer.