aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout/multicol.rs
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2016-03-25 03:27:33 +0530
committerbors-servo <lbergstrom+bors@mozilla.com>2016-03-25 03:27:33 +0530
commit605842f193aedc1151ab38a99c49f693c76e5cf3 (patch)
tree1390698f84106f785cd82ecbbfda0bb53e725a77 /components/layout/multicol.rs
parent7f944afee88bb2ab13de4f37118af14d40328f7f (diff)
parente82aa66245935f0aaac61e667a38dce9b5662f42 (diff)
downloadservo-605842f193aedc1151ab38a99c49f693c76e5cf3.tar.gz
servo-605842f193aedc1151ab38a99c49f693c76e5cf3.zip
Auto merge of #10155 - bholley:generalize_style_structs, r=SimonSapin
Generalize the style structs This allows geckolib to pass gecko style structs and have the style system write to them directly, provided we implement all the traits. <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/10155) <!-- Reviewable:end -->
Diffstat (limited to 'components/layout/multicol.rs')
-rw-r--r--components/layout/multicol.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/multicol.rs b/components/layout/multicol.rs
index 4b7ac7d8814..b7e89fecf6c 100644
--- a/components/layout/multicol.rs
+++ b/components/layout/multicol.rs
@@ -21,7 +21,7 @@ use std::fmt;
use std::sync::Arc;
use style::context::StyleContext;
use style::logical_geometry::LogicalSize;
-use style::properties::ComputedValues;
+use style::properties::{ComputedValues, TComputedValues};
use style::values::computed::{LengthOrPercentageOrAuto, LengthOrPercentageOrNone};
use util::print_tree::PrintTree;