Changeset 90681 in webkit


Ignore:
Timestamp:
Jul 9, 2011 7:35:13 AM (13 years ago)
Author:
Nikolas Zimmermann
Message:

2011-07-09 Nikolas Zimmermann <nzimmermann@rim.com>

Add a possibility to retrieve the associated SVGAnimatedProperty object for a certain XML attribute
https://bugs.webkit.org/show_bug.cgi?id=63797

Fix WinCE build. Funny none other platform complained.

  • svg/properties/SVGAnimatedStaticPropertyTearOff.h: Make create public, SVGAnimatedProperty needs it - remove friendship with it.
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r90680 r90681  
     12011-07-09  Nikolas Zimmermann  <nzimmermann@rim.com>
     2
     3        Add a possibility to retrieve the associated SVGAnimatedProperty object for a certain XML attribute
     4        https://bugs.webkit.org/show_bug.cgi?id=63797
     5
     6        Fix WinCE build. Funny none other platform complained.
     7
     8        * svg/properties/SVGAnimatedStaticPropertyTearOff.h: Make create public, SVGAnimatedProperty needs it - remove friendship with it.
     9
    1102011-07-09  Nikolas Zimmermann  <nzimmermann@rim.com>
    211
  • trunk/Source/WebCore/svg/properties/SVGAnimatedStaticPropertyTearOff.h

    r86765 r90681  
    4949    void setAnimVal(const PropertyType&) { }
    5050
    51 protected:
    52     friend class SVGAnimatedProperty;
    53 
    5451    static PassRefPtr<SVGAnimatedStaticPropertyTearOff<PropertyType> > create(SVGElement* contextElement, const QualifiedName& attributeName, PropertyType& property)
    5552    {
     
    5855    }
    5956
     57protected:
    6058    SVGAnimatedStaticPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, PropertyType& property)
    6159        : SVGAnimatedProperty(contextElement, attributeName)
Note: See TracChangeset for help on using the changeset viewer.