[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

darin darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:33:18 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit fc78b7832ea59f16e05e9dbe5430b1a8f9c741e4
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Aug 20 23:03:06 2002 +0000

    	- fix 3028936 -- fields are not submitting the correct data if they are selected
    	when you submit
    
            * kwq/KWQNSTextField.mm: (-[KWQNSTextField controlTextDidChange:]):
    	Call widget->textChanged and set edited to true here. The old code had two problems.
    	First, it only sent textChanged from controlTextDidEndEditing. Second, it overrode
    	textDidChange without calling super, preventing controlTextDidChange from being
    	sent to the delegate.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1885 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index 5d8779e..57f9dc4 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,3 +1,14 @@
+2002-08-20  Darin Adler  <darin at apple.com>
+
+	- fix 3028936 -- fields are not submitting the correct data if they are selected
+	when you submit
+
+        * kwq/KWQNSTextField.mm: (-[KWQNSTextField controlTextDidChange:]):
+	Call widget->textChanged and set edited to true here. The old code had two problems.
+	First, it only sent textChanged from controlTextDidEndEditing. Second, it overrode
+	textDidChange without calling super, preventing controlTextDidChange from being
+	sent to the delegate.
+
 2002-08-20  David Hyatt  <hyatt at apple.com>
 
 	Fix background positioning so that it works with table cells.
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 5d8779e..57f9dc4 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,14 @@
+2002-08-20  Darin Adler  <darin at apple.com>
+
+	- fix 3028936 -- fields are not submitting the correct data if they are selected
+	when you submit
+
+        * kwq/KWQNSTextField.mm: (-[KWQNSTextField controlTextDidChange:]):
+	Call widget->textChanged and set edited to true here. The old code had two problems.
+	First, it only sent textChanged from controlTextDidEndEditing. Second, it overrode
+	textDidChange without calling super, preventing controlTextDidChange from being
+	sent to the delegate.
+
 2002-08-20  David Hyatt  <hyatt at apple.com>
 
 	Fix background positioning so that it works with table cells.
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 5d8779e..57f9dc4 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,14 @@
+2002-08-20  Darin Adler  <darin at apple.com>
+
+	- fix 3028936 -- fields are not submitting the correct data if they are selected
+	when you submit
+
+        * kwq/KWQNSTextField.mm: (-[KWQNSTextField controlTextDidChange:]):
+	Call widget->textChanged and set edited to true here. The old code had two problems.
+	First, it only sent textChanged from controlTextDidEndEditing. Second, it overrode
+	textDidChange without calling super, preventing controlTextDidChange from being
+	sent to the delegate.
+
 2002-08-20  David Hyatt  <hyatt at apple.com>
 
 	Fix background positioning so that it works with table cells.
diff --git a/WebCore/kwq/KWQNSTextField.mm b/WebCore/kwq/KWQNSTextField.mm
index c3e1606..5cdfa50 100644
--- a/WebCore/kwq/KWQNSTextField.mm
+++ b/WebCore/kwq/KWQNSTextField.mm
@@ -100,11 +100,6 @@
     widget->returnPressed();
 }
 
-- (void)controlTextDidEndEditing:(NSNotification *)aNotification
-{
-    widget->textChanged();
-}
-
 - (void)dealloc
 {
     [secureField release];
@@ -199,9 +194,10 @@
     edited = ed;
 }
 
-- (void)textDidChange:(NSNotification *)aNotification
+- (void)controlTextDidChange:(NSNotification *)aNotification
 {
     edited = true;
+    widget->textChanged();
 }
 
 - (NSString *)stringValue
diff --git a/WebCore/kwq/KWQTextField.mm b/WebCore/kwq/KWQTextField.mm
index c3e1606..5cdfa50 100644
--- a/WebCore/kwq/KWQTextField.mm
+++ b/WebCore/kwq/KWQTextField.mm
@@ -100,11 +100,6 @@
     widget->returnPressed();
 }
 
-- (void)controlTextDidEndEditing:(NSNotification *)aNotification
-{
-    widget->textChanged();
-}
-
 - (void)dealloc
 {
     [secureField release];
@@ -199,9 +194,10 @@
     edited = ed;
 }
 
-- (void)textDidChange:(NSNotification *)aNotification
+- (void)controlTextDidChange:(NSNotification *)aNotification
 {
     edited = true;
+    widget->textChanged();
 }
 
 - (NSString *)stringValue

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list