diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2016-07-05 10:34:43 +0200 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2016-07-05 10:43:54 +0200 |
commit | 8ecb5962f3c2d2ec1cc031ef1e893ab81142c730 (patch) | |
tree | 57344a64ccc5e1f966bb774cea5603623b8dc9f5 /components/gfx/text | |
parent | 744b94346aa586d54af7ff13bd2bf94faef41e84 (diff) | |
download | servo-8ecb5962f3c2d2ec1cc031ef1e893ab81142c730.tar.gz servo-8ecb5962f3c2d2ec1cc031ef1e893ab81142c730.zip |
Move util::str to style
Diffstat (limited to 'components/gfx/text')
-rw-r--r-- | components/gfx/text/text_run.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/gfx/text/text_run.rs b/components/gfx/text/text_run.rs index 24024908ddc..390f8b5c3d3 100644 --- a/components/gfx/text/text_run.rs +++ b/components/gfx/text/text_run.rs @@ -11,8 +11,8 @@ use std::cell::Cell; use std::cmp::{Ordering, max}; use std::slice::Iter; use std::sync::Arc; +use style::str::char_is_whitespace; use text::glyph::{ByteIndex, GlyphStore}; -use util::str::char_is_whitespace; use webrender_traits; use xi_unicode::LineBreakIterator; |