| Index: Source/core/svg/SVGComponentTransferFunctionElement.cpp
|
| diff --git a/Source/core/svg/SVGComponentTransferFunctionElement.cpp b/Source/core/svg/SVGComponentTransferFunctionElement.cpp
|
| index 996a1718d70f08727a2e416892703de87ccc0007..ccd06767d5e93906f12ce73ef95c337385f64d66 100644
|
| --- a/Source/core/svg/SVGComponentTransferFunctionElement.cpp
|
| +++ b/Source/core/svg/SVGComponentTransferFunctionElement.cpp
|
| @@ -140,13 +140,13 @@ void SVGComponentTransferFunctionElement::svgAttributeChanged(const QualifiedNam
|
| ComponentTransferFunction SVGComponentTransferFunctionElement::transferFunction() const
|
| {
|
| ComponentTransferFunction func;
|
| - func.type = type();
|
| - func.slope = slope();
|
| - func.intercept = intercept();
|
| - func.amplitude = amplitude();
|
| - func.exponent = exponent();
|
| - func.offset = offset();
|
| - func.tableValues = tableValues();
|
| + func.type = typeCurrentValue();
|
| + func.slope = slopeCurrentValue();
|
| + func.intercept = interceptCurrentValue();
|
| + func.amplitude = amplitudeCurrentValue();
|
| + func.exponent = exponentCurrentValue();
|
| + func.offset = offsetCurrentValue();
|
| + func.tableValues = tableValuesCurrentValue();
|
| return func;
|
| }
|
|
|
|
|