Changeset 46606 in webkit


Ignore:
Timestamp:
Jul 30, 2009 3:44:49 PM (15 years ago)
Author:
Simon Fraser
Message:

2009-07-30 Simon Fraser <Simon Fraser>

Minor change to earlier commit suggested by Darin Adler.
Use the variable rather than dereferencing 'it' again.

  • css/CSSStyleSelector.cpp: (WebCore::CSSStyleSelector::keyframeStylesForAnimation):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r46604 r46606  
    1313        (WebCore::AXObjectCache::postNotification):
    1414        * accessibility/AXObjectCache.h:
     15
     162009-07-30  Simon Fraser  <simon.fraser@apple.com>
     17
     18        Minor change to earlier commit suggested by Darin Adler.
     19        Use the variable rather than dereferencing 'it' again.
     20
     21        * css/CSSStyleSelector.cpp:
     22        (WebCore::CSSStyleSelector::keyframeStylesForAnimation):
    1523
    16242009-07-30  Simon Fraser  <simon.fraser@apple.com>
  • trunk/WebCore/css/CSSStyleSelector.cpp

    r46603 r46606  
    13241324            // describes the timing function between this keyframe and the next.
    13251325            if (property != CSSPropertyWebkitAnimationTimingFunction)
    1326                 list.addProperty((*it).id());
     1326                list.addProperty(property);
    13271327        }
    13281328       
Note: See TracChangeset for help on using the changeset viewer.