mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +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 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()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue