Index: Source/WebCore/rendering/RenderView.cpp |
=================================================================== |
--- Source/WebCore/rendering/RenderView.cpp (revision 126659) |
+++ Source/WebCore/rendering/RenderView.cpp (working copy) |
@@ -961,12 +961,12 @@ |
{ |
ASSERT(m_frameView); |
- PositionedObjectsListHashSet* positionedObjects = this->positionedObjects(); |
+ ListHashSet<RenderBox*>* positionedObjects = this->positionedObjects(); |
if (!positionedObjects) |
return; |
- PositionedObjectsListHashSet::const_iterator end = positionedObjects->end(); |
- for (PositionedObjectsListHashSet::const_iterator it = positionedObjects->begin(); it != end; ++it) { |
+ ListHashSet<RenderBox*>::const_iterator end = positionedObjects->end(); |
+ for (ListHashSet<RenderBox*>::const_iterator it = positionedObjects->begin(); it != end; ++it) { |
RenderBox* currBox = *it; |
currBox->setNeedsLayout(true); |
} |