Changeset 30942 in webkit for trunk/JavaScriptCore/pcre/pcre.h


Ignore:
Timestamp:
Mar 10, 2008, 3:06:44 PM (17 years ago)
Author:
[email protected]
Message:

Reviewed by Darin.

Remove KJS::UChar, use ::UChar instead
http://bugs.webkit.org/show_bug.cgi?id=17017

To functional changes, thus no tests.

  • bindings/js/JSCSSStyleDeclarationCustom.cpp: (WebCore::hasCSSPropertyNamePrefix): (WebCore::cssPropertyName):
  • bindings/js/JSDOMWindowBase.cpp: (WebCore::windowProtoFuncAToB): (WebCore::windowProtoFuncBToA):
  • bindings/js/JSSVGPODTypeWrapper.h:
  • bindings/js/kjs_proxy.cpp: (WebCore::KJSProxy::evaluate):
  • bridge/objc/objc_utility.mm: (KJS::Bindings::throwError):
  • dom/Document.cpp: (WebCore::Document::parseQualifiedName):
  • platform/text/AtomicString.cpp: (WebCore::AtomicString::add):
  • platform/text/String.cpp: (WebCore::String::String): (WebCore::String::operator Identifier): (WebCore::String::operator UString):
  • platform/text/TextCodecICU.cpp: (WebCore::TextCodecICU::decode):
  • svg/SVGAnimatedTemplate.h:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/pcre/pcre.h

    r28833 r30942  
    5656const int JSRegExpErrorInternal = -4;
    5757
    58 JSRegExp* jsRegExpCompile(const ::UChar* pattern, int patternLength,
     58JSRegExp* jsRegExpCompile(const UChar* pattern, int patternLength,
    5959    JSRegExpIgnoreCaseOption, JSRegExpMultilineOption,
    6060    unsigned* numSubpatterns, const char** errorMessage);
    6161
    6262int jsRegExpExecute(const JSRegExp*,
    63     const ::UChar* subject, int subjectLength, int startOffset,
     63    const UChar* subject, int subjectLength, int startOffset,
    6464    int* offsetsVector, int offsetsVectorLength);
    6565
Note: See TracChangeset for help on using the changeset viewer.