aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/window.rs
diff options
context:
space:
mode:
authorMs2ger <ms2ger@gmail.com>2014-03-12 14:30:19 +0100
committerMs2ger <ms2ger@gmail.com>2014-03-12 14:30:19 +0100
commita15cac53bc4278e409ca850a79519f5d54e662b5 (patch)
tree4fd67e7f0b16e71111d395e6f9cadfc908550065 /src/components/script/dom/window.rs
parentaf616dba58cbf589b116b9e3cde4429df43e72cd (diff)
downloadservo-a15cac53bc4278e409ca850a79519f5d54e662b5.tar.gz
servo-a15cac53bc4278e409ca850a79519f5d54e662b5.zip
Don't use the Untraceable fields outside the module they're defined in.
This pattern will become illegal with the next Rust upgrade.
Diffstat (limited to 'src/components/script/dom/window.rs')
-rw-r--r--src/components/script/dom/window.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/script/dom/window.rs b/src/components/script/dom/window.rs
index 7c3d2e90280..867c1da8812 100644
--- a/src/components/script/dom/window.rs
+++ b/src/components/script/dom/window.rs
@@ -81,7 +81,7 @@ pub struct Window {
image_cache_task: ImageCacheTask,
active_timers: ~HashSet<TimerHandle>,
next_timer_handle: i32,
- extra: Untraceable
+ priv extra: Untraceable
}
struct Untraceable {