Change InlineFlowData.boxes from DVec to DList

This commit is contained in:
Brian J. Burg 2012-09-26 12:07:05 -07:00
parent 300ff62ca5
commit 90f3fa97b5

View file

@ -1,5 +1,5 @@
use au = gfx::geometry; use au = gfx::geometry;
use core::dvec::DVec; use core::dlist::DList;
use css::values::{BoxAuto, BoxLength, Px}; use css::values::{BoxAuto, BoxLength, Px};
use dl = gfx::display_list; use dl = gfx::display_list;
use dom::rcu; use dom::rcu;
@ -38,12 +38,12 @@ hard to try out that alternative.
*/ */
struct InlineFlowData { struct InlineFlowData {
boxes: ~DVec<@RenderBox> boxes: ~DList<@RenderBox>
} }
fn InlineFlowData() -> InlineFlowData { fn InlineFlowData() -> InlineFlowData {
InlineFlowData { InlineFlowData {
boxes: ~DVec() boxes: ~DList()
} }
} }