aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/htmliframeelement.rs
diff options
context:
space:
mode:
authorbors-servo <release+servo@mozilla.com>2013-10-22 09:16:17 -0700
committerbors-servo <release+servo@mozilla.com>2013-10-22 09:16:17 -0700
commit797143a1d3e09b4ddd35a1ce5948be424ec3f9ef (patch)
treec0f9307660adbc23308ea41505f0cf922fcd4af4 /src/components/script/dom/htmliframeelement.rs
parent4d8f7fd056cc59cce02de9f3e710116ea8a85afe (diff)
parent2558c723c9444dd4957a3131d7e68b56495b32ea (diff)
downloadservo-797143a1d3e09b4ddd35a1ce5948be424ec3f9ef.tar.gz
servo-797143a1d3e09b4ddd35a1ce5948be424ec3f9ef.zip
auto merge of #1067 : metajack/servo/rust-up-20131014, r=jdm
This upgrades to this morning's master. We have unfortunately broken the Android build, but I will update that in a second pull request as I think it's more than a single upgrade behind.
Diffstat (limited to 'src/components/script/dom/htmliframeelement.rs')
-rw-r--r--src/components/script/dom/htmliframeelement.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/script/dom/htmliframeelement.rs b/src/components/script/dom/htmliframeelement.rs
index 61b6f7a27f6..bbe98d4565e 100644
--- a/src/components/script/dom/htmliframeelement.rs
+++ b/src/components/script/dom/htmliframeelement.rs
@@ -44,7 +44,7 @@ struct IFrameSize {
impl IFrameSize {
pub fn set_rect(&mut self, rect: Rect<f32>) {
let future_chan = replace(&mut self.future_chan, None);
- do future_chan.map_move |future_chan| {
+ do future_chan.map |future_chan| {
let Size2D { width, height } = rect.size;
future_chan.send(Size2D(width as uint, height as uint));
};