Changeset 33313

Show
Ignore:
Timestamp:
05/12/08 23:02:52 (6 months ago)
Author:
mrowe@apple.com
Message:

2008-04-30 Geoffrey Garen <ggaren@apple.com>

Build fix: #ifdef'd out some code that doesn't work anymore.

Location:
branches/squirrelfish/WebKit/mac
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • branches/squirrelfish/WebKit/mac/ChangeLog

    r33307 r33313  
     12008-04-30  Geoffrey Garen  <ggaren@apple.com> 
     2 
     3        Build fix: #ifdef'd out some code that doesn't work anymore. 
     4 
    152008-04-30  Geoffrey Garen  <ggaren@apple.com> 
    26 
  • branches/squirrelfish/WebKit/mac/WebView/WebScriptDebugDelegate.mm

    r33307 r33313  
    175175- (NSString *)functionName 
    176176{ 
     177#if 0 
    177178    ExecState* state = _private->state; 
    178179    if (!state->scopeNode()) 
     
    185186    Identifier fn = func->functionName(); 
    186187    return toNSString(fn.ustring()); 
     188#endif 
     189    return nil; 
    187190} 
    188191 
     
    208211- (id)evaluateWebScript:(NSString *)script 
    209212{ 
     213#if 0 
    210214    JSLock lock; 
    211215 
     
    244248 
    245249    return [self _convertValueToObjcValue:result]; 
    246 } 
    247  
    248 @end 
     250#endif 
     251    return nil; 
     252} 
     253 
     254@end