[webkit-changes] cvs commit: WebKit/WebCoreSupport.subproj WebBridge.m

Adele adele at opensource.apple.com
Wed Aug 24 11:16:23 PDT 2005


adele       05/08/24 11:16:23

  Modified:    .        Tag: Safari-2-0-branch ChangeLog
               WebCoreSupport.subproj Tag: Safari-2-0-branch WebBridge.m
  Log:
          Merged fix from TOT to Safari-2-0-branch
  
      2005-08-23  John Sullivan  <sullivan at apple.com>
  
          Reviewed by Beth Dakin.
  
          - fixed <rdar://problem/4229167> 14 leaks of WebFileButton and associated objects,
          seen after running webkit layout tests
  
          * WebCoreSupport.subproj/WebBridge.m:
          (-[WebBridge fileButtonWithDelegate:]):
          this method was returning a retained object; I added an autorelease
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.3118.4.53 +15 -0     WebKit/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/WebKit/ChangeLog,v
  retrieving revision 1.3118.4.52
  retrieving revision 1.3118.4.53
  diff -u -r1.3118.4.52 -r1.3118.4.53
  --- ChangeLog	24 Aug 2005 18:00:14 -0000	1.3118.4.52
  +++ ChangeLog	24 Aug 2005 18:16:08 -0000	1.3118.4.53
  @@ -1,5 +1,20 @@
   2005-08-24  Adele Peterson  <adele at apple.com>
   
  +        Merged fix from TOT to Safari-2-0-branch
  +
  +    2005-08-23  John Sullivan  <sullivan at apple.com>
  +
  +        Reviewed by Beth Dakin.
  +        
  +        - fixed <rdar://problem/4229167> 14 leaks of WebFileButton and associated objects, 
  +        seen after running webkit layout tests
  +
  +        * WebCoreSupport.subproj/WebBridge.m:
  +        (-[WebBridge fileButtonWithDelegate:]):
  +        this method was returning a retained object; I added an autorelease
  +
  +2005-08-24  Adele Peterson  <adele at apple.com>
  +
           Fixed merge error.  Use URLToIconURL on the branch instead of pageURLToIconURL
   
           * Misc.subproj/WebIconDatabase.m:
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.340.8.11 +1 -1      WebKit/WebCoreSupport.subproj/WebBridge.m
  
  Index: WebBridge.m
  ===================================================================
  RCS file: /cvs/root/WebKit/WebCoreSupport.subproj/WebBridge.m,v
  retrieving revision 1.340.8.10
  retrieving revision 1.340.8.11
  diff -u -r1.340.8.10 -r1.340.8.11
  --- WebBridge.m	24 Aug 2005 00:45:15 -0000	1.340.8.10
  +++ WebBridge.m	24 Aug 2005 18:16:22 -0000	1.340.8.11
  @@ -383,7 +383,7 @@
   
   - (NSView <WebCoreFileButton> *)fileButtonWithDelegate:(id <WebCoreFileButtonDelegate>)delegate
   {
  -    return [[WebFileButton alloc] initWithBridge:self delegate:delegate];
  +    return [[[WebFileButton alloc] initWithBridge:self delegate:delegate] autorelease];
   }
   
   - (void)runOpenPanelForFileButtonWithResultListener:(id<WebOpenPanelResultListener>)resultListener
  
  
  



More information about the webkit-changes mailing list