From 989a96526bb1e875a37194fc8afe8f7cd26089f4 Mon Sep 17 00:00:00 2001 From: "Brian J. Burg" Date: Mon, 17 Sep 2012 18:20:13 -0700 Subject: [PATCH] Remove used min/pref width from BoxLayoutData --- src/servo/layout/base.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/servo/layout/base.rs b/src/servo/layout/base.rs index 145f435a22c..d98632f8a3d 100644 --- a/src/servo/layout/base.rs +++ b/src/servo/layout/base.rs @@ -147,20 +147,14 @@ impl FlowTree : tree::WriteMethods<@FlowContext> { */ struct BoxLayoutData { - mut min_width: au, - mut pref_width: au, mut position: Rect, - mut font_size: Length, mut background_image: Option, } fn BoxLayoutData() -> BoxLayoutData { BoxLayoutData { - min_width: au(0), - pref_width: au(0), position : au::zero_rect(), - font_size : Px(0.0), background_image : None, }