Changeset 24718 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Jul 27, 2007, 1:34:37 AM (18 years ago)
Author:
hausmann
Message:

Always define JSChar to be unsigned short for the Qt builds, to ensure compatibility with UChar.

Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/API/JSStringRef.h

    r21130 r24718  
    4141@abstract A Unicode character.
    4242*/
    43 #if !defined(WIN32) && !defined(_WIN32)
     43#if (!defined(WIN32) && !defined(_WIN32)) || defined(__BUILDING_QT)
    4444    typedef unsigned short JSChar;
    4545#else
  • trunk/JavaScriptCore/ChangeLog

    r24715 r24718  
     12007-07-27  Simon Hausmann  <[email protected]>
     2
     3        Done with and reviewed by Lars and Zack.
     4
     5        Always define JSChar to be unsigned short for the Qt builds, to ensure compatibility with UChar.
     6
     7        * API/JSStringRef.h:
     8
    192007-07-27  Simon Hausmann  <[email protected]>
    210
Note: See TracChangeset for help on using the changeset viewer.