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

mjs mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:36:51 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 440af8ff4c87aee4c66e8e5f072efb75f4103a9e
Author: mjs <mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Apr 14 06:24:40 2003 +0000

    WebKit:
    
            Reviewed by Trey.
    
            * WebView.subproj/WebDefaultWindowOperationsDelegate.m:
    	(-[WebDefaultWindowOperationsDelegate webView:setContentRect:]):
    	Implemented in terms of webView:setFrame: to save clients work.
    
    WebBrowser:
    
            Reviewed by Trey.
    
    	- fixed 3210715 - Window cannot resize smaller than 392px wide - mac.com Bookmarks
    
            * WindowController.m:
            (-[WindowController setFrameWithoutAutosaving:]): When setting
    	size smaller than the current minimum, make it the new minimum.
    	(-[WindowController webView:setContentRect:]): Removed.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4092 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 2899fab..35b4817 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,11 @@
+2003-04-13  Maciej Stachowiak  <mjs at apple.com>
+
+        Reviewed by Trey.
+
+        * WebView.subproj/WebDefaultWindowOperationsDelegate.m:
+	(-[WebDefaultWindowOperationsDelegate webView:setContentRect:]):
+	Implemented in terms of webView:setFrame: to save clients work.
+
 2003-04-11  Chris Blumenberg  <cblu at apple.com>
 
 	Removed WebKitErrorResourceLoadInterruptedByPolicyChange error because it isn't used. 
diff --git a/WebKit/WebView.subproj/WebDefaultUIDelegate.m b/WebKit/WebView.subproj/WebDefaultUIDelegate.m
index 8d32108..3563b00 100644
--- a/WebKit/WebView.subproj/WebDefaultUIDelegate.m
+++ b/WebKit/WebView.subproj/WebDefaultUIDelegate.m
@@ -125,7 +125,7 @@ static WebDefaultWindowOperationsDelegate *sharedDelegate = nil;
 
 - (void)webView:(WebView *)webView setContentRect:(NSRect)contentRect
 {
-    [[webView window] setFrame:[NSWindow frameRectForContentRect:contentRect styleMask:[[webView window] styleMask]] display:YES];
+    [self webView:webView setFrame:[NSWindow frameRectForContentRect:contentRect styleMask:[[webView window] styleMask]]];
 }
 
 - (NSRect)webViewContentRect:(WebView *)webView
diff --git a/WebKit/WebView.subproj/WebDefaultWindowOperationsDelegate.m b/WebKit/WebView.subproj/WebDefaultWindowOperationsDelegate.m
index 8d32108..3563b00 100644
--- a/WebKit/WebView.subproj/WebDefaultWindowOperationsDelegate.m
+++ b/WebKit/WebView.subproj/WebDefaultWindowOperationsDelegate.m
@@ -125,7 +125,7 @@ static WebDefaultWindowOperationsDelegate *sharedDelegate = nil;
 
 - (void)webView:(WebView *)webView setContentRect:(NSRect)contentRect
 {
-    [[webView window] setFrame:[NSWindow frameRectForContentRect:contentRect styleMask:[[webView window] styleMask]] display:YES];
+    [self webView:webView setFrame:[NSWindow frameRectForContentRect:contentRect styleMask:[[webView window] styleMask]]];
 }
 
 - (NSRect)webViewContentRect:(WebView *)webView

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list