Changeset 62423 in webkit


Ignore:
Timestamp:
Jul 2, 2010 7:02:09 PM (14 years ago)
Author:
zherczeg@webkit.org
Message:

2010-07-02 Zoltan Herczeg <zherczeg@webkit.org>

Reviewed by Oliver Hunt.

Minor fix: Diffuse constant is float (not integer)
https://bugs.webkit.org/show_bug.cgi?id=10412

  • svg/SVGFEDiffuseLightingElement.cpp: (WebCore::SVGFEDiffuseLightingElement::parseMappedAttribute):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r62418 r62423  
     12010-07-02  Zoltan Herczeg  <zherczeg@webkit.org>
     2
     3        Reviewed by Oliver Hunt.
     4
     5        Minor fix: Diffuse constant is float (not integer)
     6        https://bugs.webkit.org/show_bug.cgi?id=10412
     7
     8        * svg/SVGFEDiffuseLightingElement.cpp:
     9        (WebCore::SVGFEDiffuseLightingElement::parseMappedAttribute):
     10
    1112010-07-02  Martin Robinson  <mrobinson@igalia.com>
    212
  • trunk/WebCore/svg/SVGFEDiffuseLightingElement.cpp

    r59773 r62423  
    5656        setSurfaceScaleBaseValue(value.toFloat());
    5757    else if (attr->name() == SVGNames::diffuseConstantAttr)
    58         setDiffuseConstantBaseValue(value.toInt());
     58        setDiffuseConstantBaseValue(value.toFloat());
    5959    else if (attr->name() == SVGNames::kernelUnitLengthAttr) {
    6060        float x, y;
Note: See TracChangeset for help on using the changeset viewer.