Changeset 64327 in webkit for trunk/JavaScriptCore/wtf/qt/StringQt.cpp
- Timestamp:
- Jul 29, 2010, 6:27:24 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/qt/StringQt.cpp
r64302 r64327 26 26 #include "config.h" 27 27 28 #include <wtf/StdLibExtras.h>29 28 #include <wtf/text/WTFString.h> 30 29 … … 38 37 if (qstr.isNull()) 39 38 return; 40 m_impl = StringImpl::create(reinterpret_cast _ptr<const UChar*>(qstr.constData()), qstr.length());39 m_impl = StringImpl::create(reinterpret_cast<const UChar*>(qstr.constData()), qstr.length()); 41 40 } 42 41 … … 45 44 if (!ref.string()) 46 45 return; 47 m_impl = StringImpl::create(reinterpret_cast _ptr<const UChar*>(ref.unicode()), ref.length());46 m_impl = StringImpl::create(reinterpret_cast<const UChar*>(ref.unicode()), ref.length()); 48 47 } 49 48
Note:
See TracChangeset
for help on using the changeset viewer.