[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 06:48:42 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 4a800e295816928b0188c55e0ca0542f7ab399c0
Author: cblu <cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Oct 10 21:13:28 2002 +0000

    top level:
    
    	Fix typos.
    
            * Site/Internal/How-To/pc-os-installation.html:
            * Site/Internal/index.html:
    
    WebKit:
    
    	No need to send update event when activating/deactivating. This was as old workaround for the plug-in drawing problems.
    
            * Plugins.subproj/WebBaseNetscapePluginView.m:
            (-[WebBaseNetscapePluginView windowBecameKey:]):
            (-[WebBaseNetscapePluginView windowResignedKey:]):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2301 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 155f608..4728722 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,11 @@
+2002-10-10  Chris Blumenberg  <cblu at apple.com>
+
+	No need to send update event when activating/deactivating. This was as old workaround for the plug-in drawing problems.
+
+        * Plugins.subproj/WebBaseNetscapePluginView.m:
+        (-[WebBaseNetscapePluginView windowBecameKey:]):
+        (-[WebBaseNetscapePluginView windowResignedKey:]):
+
 === Alexander-27 ===
 
 2002-10-10  Darin Adler  <darin at apple.com>
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 155f608..4728722 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,11 @@
+2002-10-10  Chris Blumenberg  <cblu at apple.com>
+
+	No need to send update event when activating/deactivating. This was as old workaround for the plug-in drawing problems.
+
+        * Plugins.subproj/WebBaseNetscapePluginView.m:
+        (-[WebBaseNetscapePluginView windowBecameKey:]):
+        (-[WebBaseNetscapePluginView windowResignedKey:]):
+
 === Alexander-27 ===
 
 2002-10-10  Darin Adler  <darin at apple.com>
diff --git a/WebKit/Plugins.subproj/WebBaseNetscapePluginView.m b/WebKit/Plugins.subproj/WebBaseNetscapePluginView.m
index dd070aa..5415a9e 100644
--- a/WebKit/Plugins.subproj/WebBaseNetscapePluginView.m
+++ b/WebKit/Plugins.subproj/WebBaseNetscapePluginView.m
@@ -688,13 +688,11 @@
 -(void)windowBecameKey:(NSNotification *)notification
 {
     [self sendActivateEvent:YES];
-    [self performSelector:@selector(sendUpdateEvent) withObject:nil afterDelay:.001];
 }
 
 -(void)windowResignedKey:(NSNotification *)notification
 {
     [self sendActivateEvent:NO];
-    [self performSelector:@selector(sendUpdateEvent) withObject:nil afterDelay:.001];
 }
 
 - (void)defaultsHaveChanged:(NSNotification *)notification

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list