[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

andreas.kling at nokia.com andreas.kling at nokia.com
Wed Dec 22 16:17:46 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit d0411451830e1ecb01ff06edc3339c97effb6d6a
Author: andreas.kling at nokia.com <andreas.kling at nokia.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sun Nov 21 07:20:24 2010 +0000

    2010-11-20  Andreas Kling  <kling at webkit.org>
    
            Rubber-stamped by Antonio Gomes.
    
            [Qt] Fix spelling error (isEmtpyValue -> isEmptyValue)
    
            * platform/graphics/qt/FontPlatformDataQt.cpp:
            (WebCore::isEmptyValue):
            (WebCore::FontPlatformData::FontPlatformData):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@72496 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 77bc712..ec9bbb4 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,5 +1,15 @@
 2010-11-20  Andreas Kling  <kling at webkit.org>
 
+        Rubber-stamped by Antonio Gomes.
+
+        [Qt] Fix spelling error (isEmtpyValue -> isEmptyValue)
+
+        * platform/graphics/qt/FontPlatformDataQt.cpp:
+        (WebCore::isEmptyValue):
+        (WebCore::FontPlatformData::FontPlatformData):
+
+2010-11-20  Andreas Kling  <kling at webkit.org>
+
         Reviewed by Antonio Gomes.
 
         [Qt] Limit the size of image preview "cursor" when dragging
diff --git a/WebCore/platform/graphics/qt/FontPlatformDataQt.cpp b/WebCore/platform/graphics/qt/FontPlatformDataQt.cpp
index 0565deb..35e9e0c 100644
--- a/WebCore/platform/graphics/qt/FontPlatformDataQt.cpp
+++ b/WebCore/platform/graphics/qt/FontPlatformDataQt.cpp
@@ -26,7 +26,7 @@
 
 namespace WebCore {
 
-static inline bool isEmtpyValue(const float size, const bool bold, const bool oblique)
+static inline bool isEmptyValue(const float size, const bool bold, const bool oblique)
 {
      // this is the empty value by definition of the trait FontDataCacheKeyTraits
     return !bold && !oblique && size == 0.f;
@@ -34,7 +34,7 @@ static inline bool isEmtpyValue(const float size, const bool bold, const bool ob
 
 FontPlatformData::FontPlatformData(float size, bool bold, bool oblique)
 {
-    if (isEmtpyValue(size, bold, oblique))
+    if (isEmptyValue(size, bold, oblique))
         m_data = 0;
     else
         m_data = new FontPlatformDataPrivate(size, bold, oblique);

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list