[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 08:12:44 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 7bffcb6f1a16a5f7847520ff1253b8ae8232647d
Author: mjs <mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Nov 17 05:34:36 2003 +0000

            Reviewed by Darin.
    
            * kwq/KWQKHTMLPartBrowserExtension.mm:
            (KHTMLPartBrowserExtension::createNewWindow): Check for the
    	returned part being NULL, not the out value pointer.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@5534 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index ca0d674..c012c62 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,11 @@
+2003-11-16  Maciej Stachowiak  <mjs at apple.com>
+
+        Reviewed by Darin.
+
+        * kwq/KWQKHTMLPartBrowserExtension.mm:
+        (KHTMLPartBrowserExtension::createNewWindow): Check for the
+	returned part being NULL, not the out value pointer.
+
 2003-11-16  David Hyatt  <hyatt at apple.com>
 
 	Fix for 3485779, <input type=image> and <button> should not be mouse focusable.
diff --git a/WebCore/kwq/KWQKHTMLPartBrowserExtension.mm b/WebCore/kwq/KWQKHTMLPartBrowserExtension.mm
index 844ba14..e481284 100644
--- a/WebCore/kwq/KWQKHTMLPartBrowserExtension.mm
+++ b/WebCore/kwq/KWQKHTMLPartBrowserExtension.mm
@@ -133,10 +133,13 @@ void KHTMLPartBrowserExtension::createNewWindow(const KURL &url,
     }
     
     [bridge showWindow];
+
+    if ([bridge part]) {
+	[bridge part]->setName(urlArgs.frameName);
+    }
     
     if (partResult) {
 	*partResult = [bridge part];
-	(*partResult)->setName(urlArgs.frameName);
     }
     return;
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list