[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 08:30:06 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 68d1a840af3338cbc93c5a6026cd90f53e7b39da
Author: rjw <rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Mar 17 21:06:32 2004 +0000

    	Fixed 3591667.  Plugin view is added to view hierarchy before calling init.
    
            Reviewed by Ken.
    
            * WebView.subproj/WebHTMLView.m:
            (-[WebHTMLView addSubview:]):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@6235 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 73c863d..84fa2c6 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,12 @@
+2004-03-17  Richard Williamson   <rjw at apple.com>
+
+	Fixed 3591667.  Plugin view is added to view hierarchy before calling init.
+
+        Reviewed by Ken.
+
+        * WebView.subproj/WebHTMLView.m:
+        (-[WebHTMLView addSubview:]):
+
 2004-03-16  Darin Adler  <darin at apple.com>
 
         * DOM.subproj/DOMHTML.h: Updated from WebCore.
diff --git a/WebKit/WebView.subproj/WebHTMLView.m b/WebKit/WebView.subproj/WebHTMLView.m
index c389bcf..9441197 100644
--- a/WebKit/WebView.subproj/WebHTMLView.m
+++ b/WebKit/WebView.subproj/WebHTMLView.m
@@ -1217,11 +1217,11 @@ static WebHTMLView *lastHitView = nil;
 
 - (void)addSubview:(NSView *)view
 {
+    [super addSubview:view];
+
     if ([view conformsToProtocol:@protocol(WebPlugin)]) {
         [[self _pluginController] addPlugin:view];
     }
-
-    [super addSubview:view];
 }
 
 - (void)reapplyStyles

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list