Title: [173570] trunk/Source/WebCore
Revision
173570
Author
[email protected]
Date
2014-09-12 13:17:50 -0700 (Fri, 12 Sep 2014)

Log Message

Fix casing in method name - formatNumberForCustomCSSText
https://bugs.webkit.org/show_bug.cgi?id=136758

Patch by Joseph Pecoraro <[email protected]> on 2014-09-12
Reviewed by Benjamin Poulain.

* css/CSSPrimitiveValue.cpp:
(WebCore::CSSPrimitiveValue::formatNumberForCustomCSSText):
(WebCore::CSSPrimitiveValue::customCSSText):
(WebCore::CSSPrimitiveValue::formatNumberForcustomCSSText): Deleted.
* css/CSSPrimitiveValue.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (173569 => 173570)


--- trunk/Source/WebCore/ChangeLog	2014-09-12 19:24:12 UTC (rev 173569)
+++ trunk/Source/WebCore/ChangeLog	2014-09-12 20:17:50 UTC (rev 173570)
@@ -1,3 +1,16 @@
+2014-09-12  Joseph Pecoraro  <[email protected]>
+
+        Fix casing in method name - formatNumberForCustomCSSText
+        https://bugs.webkit.org/show_bug.cgi?id=136758
+
+        Reviewed by Benjamin Poulain.
+
+        * css/CSSPrimitiveValue.cpp:
+        (WebCore::CSSPrimitiveValue::formatNumberForCustomCSSText):
+        (WebCore::CSSPrimitiveValue::customCSSText):
+        (WebCore::CSSPrimitiveValue::formatNumberForcustomCSSText): Deleted.
+        * css/CSSPrimitiveValue.h:
+
 2014-09-12  Chris Dumez  <[email protected]>
 
         Make all CSSSelector data members private

Modified: trunk/Source/WebCore/css/CSSPrimitiveValue.cpp (173569 => 173570)


--- trunk/Source/WebCore/css/CSSPrimitiveValue.cpp	2014-09-12 19:24:12 UTC (rev 173569)
+++ trunk/Source/WebCore/css/CSSPrimitiveValue.cpp	2014-09-12 20:17:50 UTC (rev 173570)
@@ -973,7 +973,7 @@
     return formatNumberValue(characters, characterCount - 1);
 }
 
-ALWAYS_INLINE String CSSPrimitiveValue::formatNumberForcustomCSSText() const
+ALWAYS_INLINE String CSSPrimitiveValue::formatNumberForCustomCSSText() const
 {
     switch (m_primitiveUnitType) {
     case CSS_UNKNOWN:
@@ -1186,7 +1186,7 @@
         return cssTextCache.get(this);
     }
 
-    String text = formatNumberForcustomCSSText();
+    String text = formatNumberForCustomCSSText();
 
     ASSERT(!cssTextCache.contains(this));
     m_hasCachedCSSText = true;

Modified: trunk/Source/WebCore/css/CSSPrimitiveValue.h (173569 => 173570)


--- trunk/Source/WebCore/css/CSSPrimitiveValue.h	2014-09-12 19:24:12 UTC (rev 173569)
+++ trunk/Source/WebCore/css/CSSPrimitiveValue.h	2014-09-12 20:17:50 UTC (rev 173570)
@@ -396,7 +396,7 @@
 
     double computeLengthDouble(const CSSToLengthConversionData&) const;
 
-    ALWAYS_INLINE String formatNumberForcustomCSSText() const;
+    ALWAYS_INLINE String formatNumberForCustomCSSText() const;
     template <unsigned characterCount>
     ALWAYS_INLINE PassRef<StringImpl> formatNumberValue(const char (&characters)[characterCount]) const;
     NEVER_INLINE PassRef<StringImpl> formatNumberValue(const char* suffix, unsigned suffixLength) const;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to