[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:44:55 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit d15439c3c7d7230cbf69a62f7110bb76b8d2cda0
Author: rjw <rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Jun 11 01:17:48 2003 +0000

    	Fixed 3287862.  Don't override resize flags
    	when decoding WebView.
    
            Reviewed by Chris.
    
            * WebView.subproj/WebView.m:
            (-[WebView _commonInitializationFrameName:groupName:]):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4518 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index fc50132..c4c1c92 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,13 @@
+2003-06-10  Richard Williams   <rjw at apple.com>
+
+	Fixed 3287862.  Don't override resize flags
+	when decoding WebView.
+
+        Reviewed by Chris.
+
+        * WebView.subproj/WebView.m:
+        (-[WebView _commonInitializationFrameName:groupName:]):
+
 2003-06-10  Chris Blumenberg  <cblu at apple.com>
 
 	Fixed: <rdar://problem/3286006>: Carbon Java plug-in problems may require workaround in WebKit
diff --git a/WebKit/WebView.subproj/WebView.m b/WebKit/WebView.subproj/WebView.m
index 1a095d2..7a97221 100644
--- a/WebKit/WebView.subproj/WebView.m
+++ b/WebKit/WebView.subproj/WebView.m
@@ -94,7 +94,6 @@ enum { WebViewVersion = 1 };
 {
     NSRect f = [self frame];
     WebFrameView *wv = [[WebFrameView alloc] initWithFrame: NSMakeRect(0,0,f.size.width,f.size.height)];
-    [wv setAutoresizingMask: NSViewWidthSizable | NSViewHeightSizable];
     [self addSubview: wv];
     [wv release];
 
@@ -129,6 +128,7 @@ enum { WebViewVersion = 1 };
 {
     [super initWithFrame: f];
     [self _commonInitializationFrameName:frameName groupName:groupName];
+    [self setAutoresizingMask: NSViewWidthSizable | NSViewHeightSizable];
     return self;
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list