[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

rjw rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:38:56 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 6951cc0d6eced1bf3a8dcb4f89b1c0d6fc8b8c92
Author: rjw <rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Apr 25 23:17:45 2003 +0000

            Final API review changes.
    
            parent -> parentFrame
            children -> childFrames
    
            Reviewed by Chris.
    
            * WebCoreSupport.subproj/WebBridge.m:
            (-[WebBridge childFrames]):
            (-[WebBridge frameDetached]):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4193 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 98aa036..36a4ba9 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,6 +1,19 @@
 2003-04-25  Richard Williamson   <rjw at apple.com>
 
         Final API review changes.
+
+        parent -> parentFrame
+        children -> childFrames
+
+        Reviewed by Chris.
+
+        * WebCoreSupport.subproj/WebBridge.m:
+        (-[WebBridge childFrames]):
+        (-[WebBridge frameDetached]):
+
+2003-04-25  Richard Williamson   <rjw at apple.com>
+
+        Final API review changes.
         
         WebFrame:
         parent -> parentFrame
diff --git a/WebKit/WebCoreSupport.subproj/WebBridge.m b/WebKit/WebCoreSupport.subproj/WebBridge.m
index 53de402..b8261f9 100644
--- a/WebKit/WebCoreSupport.subproj/WebBridge.m
+++ b/WebKit/WebCoreSupport.subproj/WebBridge.m
@@ -75,7 +75,7 @@
 - (NSArray *)childFrames
 {
     ASSERT(frame != nil);
-    NSArray *frames = [frame children];
+    NSArray *frames = [frame childFrames];
     NSEnumerator *e = [frames objectEnumerator];
     NSMutableArray *frameBridges = [NSMutableArray arrayWithCapacity:[frames count]];
     WebFrame *childFrame;
@@ -925,7 +925,7 @@ static id <WebFormDelegate> formDelegate(WebBridge *self)
 - (void)frameDetached
 {
     [frame stopLoading];
-    [[frame parent] _removeChild:frame];
+    [[frame parentFrame] _removeChild:frame];
 }
 
 @end

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list