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

darin darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:28:12 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 5121a917a1819c99ee4619c440c15ae2d48b3575
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Mar 7 19:48:36 2003 +0000

            Reviewed by John.
    
            - fixed regression caused when we made the stopLoading method on WebDataSource private
    
            * WebView.subproj/WebDataSourcePrivate.m: (-[WebDataSource _recursiveStopLoading]):
            The children are frames, so we need to do stopLoading, not _stopLoading.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@3777 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index c0c132d..64ac821 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,12 @@
+2003-03-07  Darin Adler  <darin at apple.com>
+
+        Reviewed by John.
+
+        - fixed regression caused when we made the stopLoading method on WebDataSource private
+
+        * WebView.subproj/WebDataSourcePrivate.m: (-[WebDataSource _recursiveStopLoading]):
+        The children are frames, so we need to do stopLoading, not _stopLoading.
+
 2003-03-07  Chris Blumenberg  <cblu at apple.com>
 
 	Fixed: 3191052 - Predetermined downloads should not be started from the browser window
diff --git a/WebKit/WebView.subproj/WebDataSourcePrivate.m b/WebKit/WebView.subproj/WebDataSourcePrivate.m
index f2b89e3..592a951 100644
--- a/WebKit/WebView.subproj/WebDataSourcePrivate.m
+++ b/WebKit/WebView.subproj/WebDataSourcePrivate.m
@@ -266,7 +266,7 @@
     
     // We depend on the controller in webFrame and we release it in _stopLoading,
     // so call webFrame first so we don't send a message the released controller (3129503).
-    [[[self webFrame] children] makeObjectsPerformSelector:@selector(_stopLoading)];
+    [[[self webFrame] children] makeObjectsPerformSelector:@selector(stopLoading)];
     [self _stopLoadingInternal];
     
     [self release];

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list