Changeset 160009 in webkit


Ignore:
Timestamp:
Dec 3, 2013 9:26:36 AM (10 years ago)
Author:
rwlbuis@webkit.org
Message:

Fix build break after r160007.

  • rendering/style/BasicShapes.cpp:

(WebCore::BasicShape::canBlend):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r160007 r160009  
     12013-12-03  Rob Buis  <rob.buis@samsung.com>
     2
     3        Fix build break after r160007.
     4
     5        * rendering/style/BasicShapes.cpp:
     6        (WebCore::BasicShape::canBlend):
     7
    182013-12-03  Rob Buis  <rob.buis@samsung.com>
    29
  • trunk/Source/WebCore/rendering/style/BasicShapes.cpp

    r160007 r160009  
    6666    const BasicShapeEllipse* thisEllipse = static_cast<const BasicShapeEllipse*>(this);
    6767    const BasicShapeEllipse* otherEllipse = static_cast<const BasicShapeEllipse*>(other);
    68     if (!thisEllipse->radiusX().canBlend(otherEllipse->radiusX())
    69         || !thisEllipse->radiusY().canBlend(otherEllipse->radiusY())
    70         || !thisEllipse->centerX().canBlend(otherEllipse->centerX())
    71         || !thisEllipse->centerY().canBlend(otherEllipse->centerY()))
    72         return false;
     68    return (thisEllipse->radiusX().canBlend(otherEllipse->radiusX())
     69        && thisEllipse->radiusY().canBlend(otherEllipse->radiusY())
     70        && thisEllipse->centerX().canBlend(otherEllipse->centerX())
     71        && thisEllipse->centerY().canBlend(otherEllipse->centerY()));
    7372}
    7473
Note: See TracChangeset for help on using the changeset viewer.