diff options
author | Ms2ger <ms2ger@gmail.com> | 2015-01-04 11:36:47 +0100 |
---|---|---|
committer | Ms2ger <ms2ger@gmail.com> | 2015-01-04 11:59:49 +0100 |
commit | 138081ba25c47d5b9afd08e6e5d0d2aed045971a (patch) | |
tree | 05098de0cb8bf050f495e2d8fc89f66f6507d063 /components/msg/compositor_msg.rs | |
parent | 4d47817bae1a910c7abed44b0b7dd2bb344e12b7 (diff) | |
download | servo-138081ba25c47d5b9afd08e6e5d0d2aed045971a.tar.gz servo-138081ba25c47d5b9afd08e6e5d0d2aed045971a.zip |
Rename the PaintState variants.
Diffstat (limited to 'components/msg/compositor_msg.rs')
-rw-r--r-- | components/msg/compositor_msg.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/msg/compositor_msg.rs b/components/msg/compositor_msg.rs index 32717ec8f17..284e40b53af 100644 --- a/components/msg/compositor_msg.rs +++ b/components/msg/compositor_msg.rs @@ -16,8 +16,8 @@ use constellation_msg::PipelineId; /// The status of the painter. #[deriving(PartialEq, Clone)] pub enum PaintState { - IdlePaintState, - PaintingPaintState, + Idle, + Painting, } #[deriving(Eq, Ord, PartialEq, PartialOrd, Clone, Show)] |