Removed the T prefix for the style traits

More work as described in #10185.

The reason I upgraded lazy_static to 0.1.16 is because it fixes an issue with the Box name (std::boxed::Box was used in an unqualified name, which can cause name clashes when there is another type that exists with the same name).
This commit is contained in:
Per Lundberg 2016-04-09 00:41:14 +03:00
parent a162cfe45c
commit c7758a8ad8
10 changed files with 88 additions and 87 deletions

View file

@ -1437,7 +1437,7 @@ pub mod computed {
use app_units::Au;
use euclid::size::Size2D;
use properties::ComputedValues;
use properties::style_struct_traits::TFont;
use properties::style_struct_traits::Font;
use std::fmt;
use super::AuExtensionMethods;
use super::specified::AngleOrCorner;