Fix types.

This commit is contained in:
Jack Moffitt 2013-06-11 15:30:28 -06:00
parent 16ca6f2a16
commit a42cf9b379

View file

@ -466,7 +466,7 @@ pub impl LayoutTreeBuilder {
}
}
if (do_remove) {
parent_flow.remove_child(*first_flow);
(*parent_flow).remove_child(*first_flow);
}
}
}
@ -489,7 +489,7 @@ pub impl LayoutTreeBuilder {
}
}
if (do_remove) {
parent_flow.remove_child(*last_flow);
(*parent_flow).remove_child(*last_flow);
}
}
}