Changeset 64832 in webkit


Ignore:
Timestamp:
Aug 6, 2010 4:30:49 AM (14 years ago)
Author:
Nikolas Zimmermann
Message:

2010-08-06 Nikolas Zimmermann <nzimmermann@rim.com>

Not reviewed. Fix warning, breaking win build.

  • svg/SVGLength.cpp: (WebCore::SVGLength::toCSSPrimitiveValue):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r64831 r64832  
     12010-08-06  Nikolas Zimmermann  <nzimmermann@rim.com>
     2
     3        Not reviewed. Fix warning, breaking win build.
     4
     5        * svg/SVGLength.cpp:
     6        (WebCore::SVGLength::toCSSPrimitiveValue):
     7
    182010-08-06  Alexey Proskuryakov  <ap@apple.com>
    29
  • trunk/WebCore/svg/SVGLength.cpp

    r64830 r64832  
    389389PassRefPtr<CSSPrimitiveValue> SVGLength::toCSSPrimitiveValue(const SVGLength& length)
    390390{
    391     CSSPrimitiveValue::UnitTypes cssType;
     391    CSSPrimitiveValue::UnitTypes cssType = CSSPrimitiveValue::CSS_UNKNOWN;
    392392    switch (length.unitType()) {
    393393    case LengthTypeUnknown:
    394         cssType = CSSPrimitiveValue::CSS_UNKNOWN;
    395394        break;
    396395    case LengthTypeNumber:
Note: See TracChangeset for help on using the changeset viewer.