[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:58:27 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit c56766d315332994fcba9f189b508c2c95b29e67
Author: cblu <cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Sep 29 23:04:02 2003 +0000

    	Fixed: <rdar://problem/3332460>: nil-deref in khtml::RenderWidget::eventFilter with onchange handler
    
            Reviewed by darin.
    
            * kwq/KWQTextField.mm:
            (-[KWQTextField controlTextDidEndEditing:]): call setHasFocus:NO last so we have the widget that lets us get to the bridge and lets us call controlTextDidEndEditing
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@5081 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 2b5895d..76f59bf 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,12 @@
+2003-09-29  Chris Blumenberg  <cblu at apple.com>
+
+	Fixed: <rdar://problem/3332460>: nil-deref in khtml::RenderWidget::eventFilter with onchange handler
+
+        Reviewed by darin.
+
+        * kwq/KWQTextField.mm:
+        (-[KWQTextField controlTextDidEndEditing:]): call setHasFocus:NO last so we have the widget that lets us get to the bridge and lets us call controlTextDidEndEditing
+
 2003-09-29  David Hyatt  <hyatt at apple.com>
 
 	Fix for 3425053, text past the bottom of a positioned table doesn't repaint.
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 2b5895d..76f59bf 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,12 @@
+2003-09-29  Chris Blumenberg  <cblu at apple.com>
+
+	Fixed: <rdar://problem/3332460>: nil-deref in khtml::RenderWidget::eventFilter with onchange handler
+
+        Reviewed by darin.
+
+        * kwq/KWQTextField.mm:
+        (-[KWQTextField controlTextDidEndEditing:]): call setHasFocus:NO last so we have the widget that lets us get to the bridge and lets us call controlTextDidEndEditing
+
 2003-09-29  David Hyatt  <hyatt at apple.com>
 
 	Fix for 3425053, text past the bottom of a positioned table doesn't repaint.
diff --git a/WebCore/kwq/KWQTextField.mm b/WebCore/kwq/KWQTextField.mm
index 14b18be..3fc1685 100644
--- a/WebCore/kwq/KWQTextField.mm
+++ b/WebCore/kwq/KWQTextField.mm
@@ -246,14 +246,14 @@
 
 -(void)controlTextDidEndEditing:(NSNotification *)notification
 {
-    [self setHasFocus:NO];
-
     if (!widget) {
 	return;
     }
 
     WebCoreBridge *bridge = KWQKHTMLPart::bridgeForWidget(widget);
     [bridge controlTextDidEndEditing:notification];
+    
+    [self setHasFocus:NO];
 }
 
 -(void)controlTextDidChange:(NSNotification *)notification

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list