diff options
author | Keegan McAllister <kmcallister@mozilla.com> | 2013-08-09 13:24:10 -0700 |
---|---|---|
committer | Keegan McAllister <kmcallister@mozilla.com> | 2013-08-15 13:55:40 -0700 |
commit | be061a9aa0384fc36b42f4f8902b6c8cb76d30cc (patch) | |
tree | 4ede58c0b6442422f720684686cd4715dc143d2c /src/components/gfx/display_list.rs | |
parent | ffe60ea02704c0bd4545a194bff3f2feafd0133c (diff) | |
download | servo-be061a9aa0384fc36b42f4f8902b6c8cb76d30cc.tar.gz servo-be061a9aa0384fc36b42f4f8902b6c8cb76d30cc.zip |
Library changes
Diffstat (limited to 'src/components/gfx/display_list.rs')
-rw-r--r-- | src/components/gfx/display_list.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/gfx/display_list.rs b/src/components/gfx/display_list.rs index 3c220974b9b..ed3af3b1fbc 100644 --- a/src/components/gfx/display_list.rs +++ b/src/components/gfx/display_list.rs @@ -23,7 +23,7 @@ use std::cast::transmute_region; use geom::{Point2D, Rect, Size2D, SideOffsets2D}; use servo_net::image::base::Image; use servo_util::range::Range; -use extra::arc::ARC; +use extra::arc::Arc; /// A list of rendering operations to be performed. pub struct DisplayList<E> { @@ -93,7 +93,7 @@ pub struct TextDisplayItem<E> { /// Renders an image. pub struct ImageDisplayItem<E> { base: BaseDisplayItem<E>, - image: ARC<~Image>, + image: Arc<~Image>, } /// Renders a border. |