diff options
Diffstat (limited to 'components/layout/table_caption.rs')
-rw-r--r-- | components/layout/table_caption.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/layout/table_caption.rs b/components/layout/table_caption.rs index a9d9660144f..910ad7f8c5b 100644 --- a/components/layout/table_caption.rs +++ b/components/layout/table_caption.rs @@ -115,7 +115,7 @@ impl Flow for TableCaptionFlow { fn iterate_through_fragment_border_boxes( &self, - iterator: &mut FragmentBorderBoxIterator, + iterator: &mut dyn FragmentBorderBoxIterator, level: i32, stacking_context_position: &Point2D<Au>, ) { @@ -126,7 +126,7 @@ impl Flow for TableCaptionFlow { ) } - fn mutate_fragments(&mut self, mutator: &mut FnMut(&mut Fragment)) { + fn mutate_fragments(&mut self, mutator: &mut dyn FnMut(&mut Fragment)) { self.block_flow.mutate_fragments(mutator) } |