Ignore:
Timestamp:
Jul 29, 2006, 5:04:22 PM (19 years ago)
Author:
darin
Message:

JavaScriptCore:

  • Removed tabs from these source files that still had them. We don't use them; that way source files look fine in editors that have tabs set to 8 spaces or to 4 spaces.
  • Removed allow-tabs Subversion property from the files too.
  • bindings/NP_jsobject.cpp:
  • bindings/c/c_utility.cpp:
  • bindings/jni/jni_runtime.cpp:
  • bindings/jni/jni_utility.cpp:
  • bindings/objc/objc_utility.mm:
  • bindings/runtime.cpp:
  • bindings/runtime_method.cpp:
  • bindings/testbindings.cpp:
  • bindings/testbindings.mm:
  • kjs/date_object.cpp:
  • kjs/function.cpp:
  • kjs/list.cpp:
  • kjs/nodes.cpp:
  • kjs/nodes.h:
  • kjs/string_object.cpp:
  • kjs/ustring.cpp:

WebCore:

  • Removed tabs from these source files that still had them. We don't use them; that way source files look fine in editors that have tabs set to 8 spaces or to 4 spaces.
  • Removed allow-tabs Subversion property from the files too.
  • bindings/objc/WebScriptObject.h:
  • bindings/objc/WebScriptObject.mm:
  • platform/FontData.cpp:

WebKit:

  • Removed tabs from these source files that still had them. We don't use them; that way source files look fine in editors that have tabs set to 8 spaces or to 4 spaces.
  • Removed allow-tabs Subversion property from the files too.
  • DefaultDelegates/WebDefaultPolicyDelegate.m:
  • History/WebHistory.m:
  • Misc/WebDownload.m:
  • Misc/WebIconDatabase.m:
  • Misc/WebKitErrors.m:
  • Misc/WebKitLogging.m:
  • Misc/WebNSDataExtras.m:
  • Misc/WebNSFileManagerExtras.m:
  • Panels/WebPanelAuthenticationHandler.m:
  • Plugins/WebBaseNetscapePluginView.m:
  • Plugins/npfunctions.h:
  • WebCoreSupport/WebSubresourceLoader.m:
  • WebView/WebMainResourceLoader.m:
  • WebView/WebView.h:
  • WebView/WebView.m:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/bindings/runtime_method.cpp

    • Property allow-tabs deleted
    r13821 r15698  
    7070{
    7171    if (_methodList.length() > 0) {
    72         RuntimeObjectImp *imp;
    73        
    74         // If thisObj is the DOM object for a plugin, get the corresponding
    75         // runtime object from the DOM object.
    76         if (thisObj->classInfo() != &KJS::RuntimeObjectImp::info) {
    77             JSValue *runtimeObject = thisObj->get(exec, "__apple_runtime_object");
    78             imp = static_cast<RuntimeObjectImp*>(runtimeObject);
    79         }
    80         else {
    81             imp = static_cast<RuntimeObjectImp*>(thisObj);
    82         }
     72        RuntimeObjectImp *imp;
     73       
     74        // If thisObj is the DOM object for a plugin, get the corresponding
     75        // runtime object from the DOM object.
     76        if (thisObj->classInfo() != &KJS::RuntimeObjectImp::info) {
     77            JSValue *runtimeObject = thisObj->get(exec, "__apple_runtime_object");
     78            imp = static_cast<RuntimeObjectImp*>(runtimeObject);
     79        }
     80        else {
     81            imp = static_cast<RuntimeObjectImp*>(thisObj);
     82        }
    8383        if (imp) {
    8484            Instance *instance = imp->getInternalInstance();
     
    107107    return Completion(Normal, jsUndefined());
    108108}
    109 
Note: See TracChangeset for help on using the changeset viewer.