From 583892bf6989250b2b50066eee28bf7c7c131d94 Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Mon, 14 Apr 2014 15:22:23 +0100 Subject: [PATCH] fixup! Rename ElementType to PseudoElementType, to avoid confusion with ElementTypeId. --- src/components/main/layout/construct.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/main/layout/construct.rs b/src/components/main/layout/construct.rs index e3be9167d39..b0451c363a7 100644 --- a/src/components/main/layout/construct.rs +++ b/src/components/main/layout/construct.rs @@ -558,7 +558,7 @@ impl<'a> FlowConstructor<'a> { // Concatenate all the boxes of our kids, creating {ib} splits as necessary. for kid in node.children() { - if kid.get_element_type() != Normal { + if kid.get_pseudo_element_type() != Normal { self.process(&kid); } match kid.swap_out_construction_result() {