[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:59:11 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit a4c540a456bfc4ce6d1dce35eeec2f866bd2bba4
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Oct 1 23:56:33 2003 +0000

            Reviewed by John.
    
            * WebView.subproj/WebHTMLViewPrivate.m: (-[WebHTMLView _webView]):
            Fixed problem where we'd get a nil WebView and pass crazy values for subframe
            text multipliers.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@5109 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 1210f66..06584ba 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,11 @@
+2003-10-01  Darin Adler  <darin at apple.com>
+
+        Reviewed by John.
+
+        * WebView.subproj/WebHTMLViewPrivate.m: (-[WebHTMLView _webView]):
+        Fixed problem where we'd get a nil WebView and pass crazy values for subframe
+        text multipliers.
+
 2003-10-01  David Hyatt  <hyatt at apple.com>
 
 	Fix for 3440804, broken scrollbars in downloads window.  Make Auto be the default
diff --git a/WebKit/WebView.subproj/WebHTMLViewPrivate.m b/WebKit/WebView.subproj/WebHTMLViewPrivate.m
index 4d493c7..77b381a 100644
--- a/WebKit/WebView.subproj/WebHTMLViewPrivate.m
+++ b/WebKit/WebView.subproj/WebHTMLViewPrivate.m
@@ -104,7 +104,9 @@ static BOOL forceRealHitTest = NO;
 
 - (WebView *)_webView
 {
-    return (WebView *)[self _web_superviewOfClass:[WebView class]];
+    // We used to use the view hierarchy exclusively here, but that won't work
+    // right when the first viewDidMoveToSuperview call is done, and this wil.
+    return [[self _frame] webView];
 }
 
 - (WebFrame *)_frame

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list