diff options
author | Manish Goregaokar <manishsmail@gmail.com> | 2014-09-29 06:01:13 +0530 |
---|---|---|
committer | Manish Goregaokar <manishsmail@gmail.com> | 2014-10-05 22:39:24 +0530 |
commit | 22567762a0d1a6f77f770b488f60adb14150843d (patch) | |
tree | daa4fe454494e6ed27241f3abdbc45fb6e679f72 /components/script/page.rs | |
parent | a8f96ddfb203e404dccab139b0807137c31e32b5 (diff) | |
download | servo-22567762a0d1a6f77f770b488f60adb14150843d.tar.gz servo-22567762a0d1a6f77f770b488f60adb14150843d.zip |
Remove Traceable/Untraceable from window.rs
Diffstat (limited to 'components/script/page.rs')
-rw-r--r-- | components/script/page.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/page.rs b/components/script/page.rs index f2e46c165ab..9a39077b15b 100644 --- a/components/script/page.rs +++ b/components/script/page.rs @@ -165,7 +165,7 @@ impl Page { if damaged { let frame = self.frame(); let window = frame.as_ref().unwrap().window.root(); - self.reflow(goal, window.control_chan.clone(), &**window.compositor); + self.reflow(goal, window.control_chan.clone(), &*window.compositor); } else { self.avoided_reflows.set(self.avoided_reflows.get() + 1); } |