Ignore:
Timestamp:
2014-10-30T11:39:47+01:00 (9 years ago)
Author:
stoecker
Message:

update SVG code to current SVN (fix line endings), see #10479

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/com/kitfox/svg/ClipPath.java

    r6002 r7676  
    131131     * all attributes with track information.
    132132     *
     133     * @param curTime
    133134     * @return - true if this node has changed state as a result of the time
    134135     * update
     136     * @throws com.kitfox.svg.SVGException
    135137     */
    136138    public boolean updateTime(double curTime) throws SVGException
     
    160162        }
    161163
     164        for (int i = 0; i < children.size(); ++i)
     165        {
     166            SVGElement ele = (SVGElement) children.get(i);
     167            ele.updateTime(curTime);
     168        }
     169       
    162170        return shapeChange;
    163171    }
Note: See TracChangeset for help on using the changeset viewer.