Changeset 13663 in webkit for trunk/JavaScriptCore/kjs/ustring.cpp
- Timestamp:
- Apr 3, 2006, 4:49:39 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/ustring.cpp
r13541 r13663 45 45 using std::max; 46 46 47 #include < unicode/uchar.h>47 #include <kxmlcore/unicode/Unicode.h> 48 48 49 49 namespace KJS { … … 145 145 UChar UChar::toLower() const 146 146 { 147 return static_cast<unsigned short>(u_tolower(uc));147 return KXMLCore::Unicode::toLower(uc); 148 148 } 149 149 150 150 UChar UChar::toUpper() const 151 151 { 152 return static_cast<unsigned short>(u_toupper(uc));152 return KXMLCore::Unicode::toUpper(uc); 153 153 } 154 154
Note:
See TracChangeset
for help on using the changeset viewer.