[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:36:11 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit a331ef32b482ab3585b86816fb146cb7dea6f47a
Author: cblu <cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Apr 10 18:06:34 2003 +0000

    	Fixed: 3222896 - REGRESSION: sound plays after closing a window with a RealPlayer plug-in in it
    
            Reviewed by darin.
    
            * Plugins.subproj/WebBaseNetscapePluginView.m:
            (-[WebBaseNetscapePluginView viewDidMoveToHostWindow]): We were starting plug-in on window close because that's when the host window is set to nil. Just check if we now have a host window before we start.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4062 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 75a5f2c..1ab93be 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,12 @@
+2003-04-10  Chris Blumenberg  <cblu at apple.com>
+
+	Fixed: 3222896 - REGRESSION: sound plays after closing a window with a RealPlayer plug-in in it
+
+        Reviewed by darin.
+
+        * Plugins.subproj/WebBaseNetscapePluginView.m:
+        (-[WebBaseNetscapePluginView viewDidMoveToHostWindow]): We were starting plug-in on window close because that's when the host window is set to nil. Just check if we now have a host window before we start. 
+
 2003-04-10  Darin Adler  <darin at apple.com>
 
         Reviewed by Trey.
diff --git a/WebKit/Plugins.subproj/WebBaseNetscapePluginView.m b/WebKit/Plugins.subproj/WebBaseNetscapePluginView.m
index a126996..369a496 100644
--- a/WebKit/Plugins.subproj/WebBaseNetscapePluginView.m
+++ b/WebKit/Plugins.subproj/WebBaseNetscapePluginView.m
@@ -1019,7 +1019,7 @@ typedef struct {
 
 - (void)viewDidMoveToHostWindow
 {
-    if ([self currentWindow]) {
+    if ([[self controller] hostWindow]) {
         // View now has an associated window. Start it if not already started.
         [self start];
     }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list