diff options
Diffstat (limited to 'src/components/main/layout/flow.rs')
-rw-r--r-- | src/components/main/layout/flow.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/main/layout/flow.rs b/src/components/main/layout/flow.rs index 2373a47df87..9abd29ab934 100644 --- a/src/components/main/layout/flow.rs +++ b/src/components/main/layout/flow.rs @@ -35,7 +35,7 @@ use layout::incremental::RestyleDamage; use layout::inline::InlineFlow; use layout::parallel::{FlowParallelInfo, UnsafeFlow}; use layout::parallel; -use layout::wrapper::LayoutNode; +use layout::wrapper::ThreadSafeLayoutNode; use extra::dlist::{DList, DListIterator, MutDListIterator}; use extra::container::Deque; @@ -553,7 +553,7 @@ impl Iterator<@Box> for BoxIterator { impl BaseFlow { #[inline] - pub fn new(id: int, node: LayoutNode) -> BaseFlow { + pub fn new(id: int, node: ThreadSafeLayoutNode) -> BaseFlow { let style = node.style(); BaseFlow { restyle_damage: node.restyle_damage(), |