Changeset 24774 in webkit for trunk/JavaScriptCore
- Timestamp:
- Jul 30, 2007, 8:30:37 AM (18 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSStringRef.h
r24718 r24774 41 41 @abstract A Unicode character. 42 42 */ 43 #if (!defined(WIN32) && !defined(_WIN32)) || defined(__BUILDING_QT)43 #if !defined(WIN32) && !defined(_WIN32) 44 44 typedef unsigned short JSChar; 45 45 #else -
trunk/JavaScriptCore/ChangeLog
r24718 r24774 1 2007-07-30 Simon Hausmann <[email protected]> 2 3 Done with and reviewed by Lars. 4 5 Removed the __BUILDING_QT ifdef in JSStringRef.h and changed UChar for the Qt build to use wchar_t on Windows. 6 7 * API/JSStringRef.h: 8 * wtf/unicode/qt4/UnicodeQt4.h: 9 1 10 2007-07-27 Simon Hausmann <[email protected]> 2 11 -
trunk/JavaScriptCore/wtf/unicode/qt4/UnicodeQt4.h
r21371 r24774 56 56 #endif 57 57 58 // ugly hack to make UChar compatible with JSChar in API/JSStringRef.h 59 #if defined(Q_OS_WIN) 60 typedef wchar_t UChar; 61 #else 58 62 typedef uint16_t UChar; 63 #endif 59 64 typedef uint32_t UChar32; 60 65
Note:
See TracChangeset
for help on using the changeset viewer.