diff options
author | Ms2ger <ms2ger@gmail.com> | 2015-03-27 17:04:41 +0100 |
---|---|---|
committer | Ms2ger <ms2ger@gmail.com> | 2015-03-28 15:36:36 +0100 |
commit | 54c006d1597af4a8e46b262b807913399fdb49d9 (patch) | |
tree | cb49ae06139d256083add5107ad751a69a475c82 /components/script/layout_interface.rs | |
parent | 6f0575095628fd7ea552b84b82c1a70e51615e9d (diff) | |
download | servo-54c006d1597af4a8e46b262b807913399fdb49d9.tar.gz servo-54c006d1597af4a8e46b262b807913399fdb49d9.zip |
Use u32 for reflow ids.
Diffstat (limited to 'components/script/layout_interface.rs')
-rw-r--r-- | components/script/layout_interface.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/layout_interface.rs b/components/script/layout_interface.rs index e14475aa793..9b7e3a292ea 100644 --- a/components/script/layout_interface.rs +++ b/components/script/layout_interface.rs @@ -115,7 +115,7 @@ pub struct Reflow { /// The channel that we send a notification to. pub script_join_chan: Sender<()>, /// Unique identifier - pub id: uint, + pub id: u32, /// The type of query if any to perform during this reflow. pub query_type: ReflowQueryType, /// A clipping rectangle for the page, an enlarged rectangle containing the viewport. |