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

cblu cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:04:17 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 634e3f1b3316c901598afa5637f26bb0c44cb231
Author: cblu <cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Nov 20 00:24:42 2002 +0000

    	Fixed: 3092588 - redraw errors in QT controller if window is in background
    
    	We need to send update events after we activate/deactivate after all.
    
            * Plugins.subproj/WebBaseNetscapePluginView.m:
            (-[WebBaseNetscapePluginView windowBecameKey:]):
            (-[WebBaseNetscapePluginView windowResignedKey:]):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2768 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 571514d..3c0420c 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,5 +1,15 @@
 2002-11-19  Chris Blumenberg  <cblu at apple.com>
 
+	Fixed: 3092588 - redraw errors in QT controller if window is in background
+
+	We need to send update events after we activate/deactivate after all.
+
+        * Plugins.subproj/WebBaseNetscapePluginView.m:
+        (-[WebBaseNetscapePluginView windowBecameKey:]):
+        (-[WebBaseNetscapePluginView windowResignedKey:]):
+
+2002-11-19  Chris Blumenberg  <cblu at apple.com>
+
 	Fixed: 3020720 - dropping a folder in the page address makes the folder open in Finder, empties the field
 
         * Misc.subproj/WebNSPasteboardExtras.m:
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 571514d..3c0420c 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,5 +1,15 @@
 2002-11-19  Chris Blumenberg  <cblu at apple.com>
 
+	Fixed: 3092588 - redraw errors in QT controller if window is in background
+
+	We need to send update events after we activate/deactivate after all.
+
+        * Plugins.subproj/WebBaseNetscapePluginView.m:
+        (-[WebBaseNetscapePluginView windowBecameKey:]):
+        (-[WebBaseNetscapePluginView windowResignedKey:]):
+
+2002-11-19  Chris Blumenberg  <cblu at apple.com>
+
 	Fixed: 3020720 - dropping a folder in the page address makes the folder open in Finder, empties the field
 
         * Misc.subproj/WebNSPasteboardExtras.m:
diff --git a/WebKit/Plugins.subproj/WebBaseNetscapePluginView.m b/WebKit/Plugins.subproj/WebBaseNetscapePluginView.m
index ec4d19d..aa58b17 100644
--- a/WebKit/Plugins.subproj/WebBaseNetscapePluginView.m
+++ b/WebKit/Plugins.subproj/WebBaseNetscapePluginView.m
@@ -700,11 +700,13 @@
 -(void)windowBecameKey:(NSNotification *)notification
 {
     [self sendActivateEvent:YES];
+    [self sendUpdateEvent];
 }
 
 -(void)windowResignedKey:(NSNotification *)notification
 {
     [self sendActivateEvent:NO];
+    [self sendUpdateEvent];
 }
 
 -(void)windowDidMiniaturize:(NSNotification *)notification

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list