diff options
author | Ms2ger <ms2ger@gmail.com> | 2014-04-26 12:25:50 +0200 |
---|---|---|
committer | Ms2ger <ms2ger@gmail.com> | 2014-04-28 23:06:26 +0200 |
commit | 20f649da71248caa796aba766ebfb77bb5090847 (patch) | |
tree | 2b59bf1f42b47c3113b0c19466eaaf8e175f4215 /src/components/script/layout_interface.rs | |
parent | 558986c87e7e23b0f0e157b43add6cf6407c3232 (diff) | |
download | servo-20f649da71248caa796aba766ebfb77bb5090847.tar.gz servo-20f649da71248caa796aba766ebfb77bb5090847.zip |
Make get_nodes_under_mouse return Vec.
Diffstat (limited to 'src/components/script/layout_interface.rs')
-rw-r--r-- | src/components/script/layout_interface.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/script/layout_interface.rs b/src/components/script/layout_interface.rs index 224c51918a8..9249d39b051 100644 --- a/src/components/script/layout_interface.rs +++ b/src/components/script/layout_interface.rs @@ -85,7 +85,7 @@ pub type UntrustedNodeAddress = *c_void; pub struct ContentBoxResponse(pub Rect<Au>); pub struct ContentBoxesResponse(pub ~[Rect<Au>]); pub struct HitTestResponse(pub UntrustedNodeAddress); -pub struct MouseOverResponse(pub ~[UntrustedNodeAddress]); +pub struct MouseOverResponse(pub Vec<UntrustedNodeAddress>); /// Determines which part of the #[deriving(Eq, Ord, TotalEq, TotalOrd, Encodable)] |