mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Change InlineFlowData.boxes from DVec to DList
This commit is contained in:
parent
300ff62ca5
commit
90f3fa97b5
1 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
use au = gfx::geometry;
|
||||
use core::dvec::DVec;
|
||||
use core::dlist::DList;
|
||||
use css::values::{BoxAuto, BoxLength, Px};
|
||||
use dl = gfx::display_list;
|
||||
use dom::rcu;
|
||||
|
@ -38,12 +38,12 @@ hard to try out that alternative.
|
|||
*/
|
||||
|
||||
struct InlineFlowData {
|
||||
boxes: ~DVec<@RenderBox>
|
||||
boxes: ~DList<@RenderBox>
|
||||
}
|
||||
|
||||
fn InlineFlowData() -> InlineFlowData {
|
||||
InlineFlowData {
|
||||
boxes: ~DVec()
|
||||
boxes: ~DList()
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue