Changeset 173570 in webkit


Ignore:
Timestamp:
Sep 12, 2014 1:17:50 PM (10 years ago)
Author:
commit-queue@webkit.org
Message:

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

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2014-09-12
Reviewed by Benjamin Poulain.

  • css/CSSPrimitiveValue.cpp:

(WebCore::CSSPrimitiveValue::formatNumberForCustomCSSText):
(WebCore::CSSPrimitiveValue::customCSSText):
(WebCore::CSSPrimitiveValue::formatNumberForcustomCSSText): Deleted.

  • css/CSSPrimitiveValue.h:
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r173569 r173570  
     12014-09-12  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        Fix casing in method name - formatNumberForCustomCSSText
     4        https://bugs.webkit.org/show_bug.cgi?id=136758
     5
     6        Reviewed by Benjamin Poulain.
     7
     8        * css/CSSPrimitiveValue.cpp:
     9        (WebCore::CSSPrimitiveValue::formatNumberForCustomCSSText):
     10        (WebCore::CSSPrimitiveValue::customCSSText):
     11        (WebCore::CSSPrimitiveValue::formatNumberForcustomCSSText): Deleted.
     12        * css/CSSPrimitiveValue.h:
     13
    1142014-09-12  Chris Dumez  <cdumez@apple.com>
    215
  • trunk/Source/WebCore/css/CSSPrimitiveValue.cpp

    r172758 r173570  
    974974}
    975975
    976 ALWAYS_INLINE String CSSPrimitiveValue::formatNumberForcustomCSSText() const
     976ALWAYS_INLINE String CSSPrimitiveValue::formatNumberForCustomCSSText() const
    977977{
    978978    switch (m_primitiveUnitType) {
     
    11871187    }
    11881188
    1189     String text = formatNumberForcustomCSSText();
     1189    String text = formatNumberForCustomCSSText();
    11901190
    11911191    ASSERT(!cssTextCache.contains(this));
  • trunk/Source/WebCore/css/CSSPrimitiveValue.h

    r172192 r173570  
    397397    double computeLengthDouble(const CSSToLengthConversionData&) const;
    398398
    399     ALWAYS_INLINE String formatNumberForcustomCSSText() const;
     399    ALWAYS_INLINE String formatNumberForCustomCSSText() const;
    400400    template <unsigned characterCount>
    401401    ALWAYS_INLINE PassRef<StringImpl> formatNumberValue(const char (&characters)[characterCount]) const;
Note: See TracChangeset for help on using the changeset viewer.