[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:02:49 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 81cc7651b5b2f10ca840ff03e2116551ccda7f8f
Author: cblu <cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Nov 18 19:31:38 2002 +0000

    	Fixed: 3098767 - REGRESSION: standalone quicktime content just shows blank window
    
    	Check the instance not the class for the class type.
    
            * Plugins.subproj/WebNetscapePluginRepresentation.m:
            (-[WebNetscapePluginRepresentation receivedData:withDataSource:]):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2731 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 25b8b4a..7d37d27 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,12 @@
+2002-11-18  Chris Blumenberg  <cblu at apple.com>
+
+	Fixed: 3098767 - REGRESSION: standalone quicktime content just shows blank window
+
+	Check the instance not the class for the class type.
+
+        * Plugins.subproj/WebNetscapePluginRepresentation.m:
+        (-[WebNetscapePluginRepresentation receivedData:withDataSource:]):
+
 2002-11-18  Ken Kocienda  <kocienda at apple.com>
 
 	Added feature to import bookmarks/favorites from MSIE. This
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 25b8b4a..7d37d27 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,12 @@
+2002-11-18  Chris Blumenberg  <cblu at apple.com>
+
+	Fixed: 3098767 - REGRESSION: standalone quicktime content just shows blank window
+
+	Check the instance not the class for the class type.
+
+        * Plugins.subproj/WebNetscapePluginRepresentation.m:
+        (-[WebNetscapePluginRepresentation receivedData:withDataSource:]):
+
 2002-11-18  Ken Kocienda  <kocienda at apple.com>
 
 	Added feature to import bookmarks/favorites from MSIE. This
diff --git a/WebKit/Plugins.subproj/WebNetscapePluginRepresentation.m b/WebKit/Plugins.subproj/WebNetscapePluginRepresentation.m
index b1b1b6e..c5d6dce 100644
--- a/WebKit/Plugins.subproj/WebNetscapePluginRepresentation.m
+++ b/WebKit/Plugins.subproj/WebNetscapePluginRepresentation.m
@@ -21,7 +21,7 @@
 {
     if(!instance){
         NSView *view = [[[ds webFrame] webView] documentView];
-        if([[view class] isKindOfClass:[WebNetscapePluginDocumentView class]]){
+        if([view isKindOfClass:[WebNetscapePluginDocumentView class]]){
             [self setPluginPointer:[(WebNetscapePluginDocumentView *)view pluginPointer]];
             [self setResponse:[ds response]];
         }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list