diff options
Diffstat (limited to 'src/components/gfx/render_task.rs')
-rw-r--r-- | src/components/gfx/render_task.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/gfx/render_task.rs b/src/components/gfx/render_task.rs index e81337ef0ef..d704c2e8160 100644 --- a/src/components/gfx/render_task.rs +++ b/src/components/gfx/render_task.rs @@ -75,7 +75,7 @@ priv struct RenderTask<C> { last_paint_msg: Option<(arc::ARC<LayerBufferSet>, Size2D<uint>)>, } -impl<C: RenderListener + Owned> RenderTask<C> { +impl<C: RenderListener + Send> RenderTask<C> { pub fn create(id: uint, port: Port<Msg>, compositor: C, |