[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:59:54 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 9aa61f37610daf83f9aa9b55a71605cd5c33c9dc
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Nov 14 04:53:46 2002 +0000

    WebCore:
    
            * kwq/KWQLineEdit.mm: (QLineEdit::sizeForCharacterWidth):
    	Use the "0" instead of the "x" as the canonical character for width.
    	This is slightly wider and is better for credit card numbers, for example.
    
            * WebCore.pbproj/project.pbxproj: Tweak.
    
    WebBrowser:
    
            * English.lproj/StringsNotToBeLocalized.txt: Let the script sort this file.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2664 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index 846667f..5b21e1a 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,5 +1,13 @@
 2002-11-13  Darin Adler  <darin at apple.com>
 
+        * kwq/KWQLineEdit.mm: (QLineEdit::sizeForCharacterWidth):
+	Use the "0" instead of the "x" as the canonical character for width.
+	This is slightly wider and is better for credit card numbers, for example.
+
+        * WebCore.pbproj/project.pbxproj: Tweak.
+
+2002-11-13  Darin Adler  <darin at apple.com>
+
 	- fixed 3083982 -- Logging into AOL gives null view
 
 	Turns out AOL was using a refresh header, which we were not supporting.
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 846667f..5b21e1a 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,5 +1,13 @@
 2002-11-13  Darin Adler  <darin at apple.com>
 
+        * kwq/KWQLineEdit.mm: (QLineEdit::sizeForCharacterWidth):
+	Use the "0" instead of the "x" as the canonical character for width.
+	This is slightly wider and is better for credit card numbers, for example.
+
+        * WebCore.pbproj/project.pbxproj: Tweak.
+
+2002-11-13  Darin Adler  <darin at apple.com>
+
 	- fixed 3083982 -- Logging into AOL gives null view
 
 	Turns out AOL was using a refresh header, which we were not supporting.
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 846667f..5b21e1a 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,5 +1,13 @@
 2002-11-13  Darin Adler  <darin at apple.com>
 
+        * kwq/KWQLineEdit.mm: (QLineEdit::sizeForCharacterWidth):
+	Use the "0" instead of the "x" as the canonical character for width.
+	This is slightly wider and is better for credit card numbers, for example.
+
+        * WebCore.pbproj/project.pbxproj: Tweak.
+
+2002-11-13  Darin Adler  <darin at apple.com>
+
 	- fixed 3083982 -- Logging into AOL gives null view
 
 	Turns out AOL was using a refresh header, which we were not supporting.
diff --git a/WebCore/WebCore.pbproj/project.pbxproj b/WebCore/WebCore.pbproj/project.pbxproj
index 2d604e9..83de1b3 100644
--- a/WebCore/WebCore.pbproj/project.pbxproj
+++ b/WebCore/WebCore.pbproj/project.pbxproj
@@ -5899,12 +5899,12 @@
 				F587855102DE375901EA4122,
 				F587855202DE375901EA4122,
 				F587855302DE375901EA4122,
+				517FA6B20370BD6100CA2D3A,
+				517FA6B60370C7ED00CA2D3A,
 				F587855402DE375901EA4122,
 				F587855502DE375901EA4122,
 				F58EF58E02DFDFB7018635CA,
 				F58EF58D02DFDFB7018635CA,
-				517FA6B20370BD6100CA2D3A,
-				517FA6B60370C7ED00CA2D3A,
 			);
 			isa = PBXGroup;
 			name = "WebCore SPI";
diff --git a/WebCore/kwq/KWQLineEdit.mm b/WebCore/kwq/KWQLineEdit.mm
index 7286137..9d6a0b0 100644
--- a/WebCore/kwq/KWQLineEdit.mm
+++ b/WebCore/kwq/KWQLineEdit.mm
@@ -134,7 +134,7 @@ QSize QLineEdit::sizeForCharacterWidth(int numCharacters) const
     
     NSMutableString *nominalWidthString = [NSMutableString stringWithCapacity:numCharacters];
     for (int i = 0; i < numCharacters; ++i) {
-        [nominalWidthString appendString:@"x"];
+        [nominalWidthString appendString:@"0"];
     }
         
     KWQTextField *textField = (KWQTextField *)getView();

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list