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

rjw rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:55:37 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit add0cf7544690493553eb830602a0c1076f82080
Author: rjw <rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Oct 28 22:22:18 2002 +0000

            Fixed 3086188 - REGRESSION: Justified text is broken
    
            Bogus special case for DirW(hite)S(pace).  This
            should be correctly detected by CF, but is not.
            Revert to explicit checking for ' ' character.  This'll
            work most of the time.  All the more reason to do
            our own unicode attribute database.
    
            * kwq/KWQChar.mm:
            (QChar::direction):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2495 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index 4cdb7a1..32ddc59 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,3 +1,16 @@
+2002-10-28  Richard Williamson   <rjw at apple.com>
+    
+        Fixed 3086188 - REGRESSION: Justified text is broken
+        
+        Bogus special case for DirW(hite)S(pace).  This
+        should be correctly detected by CF, but is not.
+        Revert to explicit checking for ' ' character.  This'll
+        work most of the time.  All the more reason to do
+        our own unicode attribute database.
+        
+        * kwq/KWQChar.mm:
+        (QChar::direction):
+
 2002-10-28  Chris Blumenberg  <cblu at apple.com>
 
 	Fixed: 3056726 - View Source window always displays the source in current system encoding
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 4cdb7a1..32ddc59 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,16 @@
+2002-10-28  Richard Williamson   <rjw at apple.com>
+    
+        Fixed 3086188 - REGRESSION: Justified text is broken
+        
+        Bogus special case for DirW(hite)S(pace).  This
+        should be correctly detected by CF, but is not.
+        Revert to explicit checking for ' ' character.  This'll
+        work most of the time.  All the more reason to do
+        our own unicode attribute database.
+        
+        * kwq/KWQChar.mm:
+        (QChar::direction):
+
 2002-10-28  Chris Blumenberg  <cblu at apple.com>
 
 	Fixed: 3056726 - View Source window always displays the source in current system encoding
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 4cdb7a1..32ddc59 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,16 @@
+2002-10-28  Richard Williamson   <rjw at apple.com>
+    
+        Fixed 3086188 - REGRESSION: Justified text is broken
+        
+        Bogus special case for DirW(hite)S(pace).  This
+        should be correctly detected by CF, but is not.
+        Revert to explicit checking for ' ' character.  This'll
+        work most of the time.  All the more reason to do
+        our own unicode attribute database.
+        
+        * kwq/KWQChar.mm:
+        (QChar::direction):
+
 2002-10-28  Chris Blumenberg  <cblu at apple.com>
 
 	Fixed: 3056726 - View Source window always displays the source in current system encoding
diff --git a/WebCore/kwq/KWQChar.mm b/WebCore/kwq/KWQChar.mm
index 2269fc1..395fd63 100644
--- a/WebCore/kwq/KWQChar.mm
+++ b/WebCore/kwq/KWQChar.mm
@@ -103,15 +103,14 @@ QChar QChar::upper() const
     return scratchUniChar;
 }
 
-extern "C" {
-}
-
 QChar::Direction QChar::direction() const
 {
-    // FIXME: unimplemented because we don't do BIDI yet
     uint8_t type;
     QChar::Direction dir = DirL;
 
+     if (c == ' ')
+         return DirWS;
+
     CFUniCharGetBidiCategory (&c, 1, &type);
     switch (type){
         case kCFUniCharBiDiPropertyON:

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list