summaryrefslogtreecommitdiffstats
path: root/examples/tour/src
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-05-19 20:01:55 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-05-19 20:01:55 +0200
commit4aed0fa4b6d63b739b5557ef16f6077988cd2758 (patch)
tree2b773d818e745ee33015f904b8a748c50d7f2cfc /examples/tour/src
parenta0ac09122a68d9be7d11e5cc765f52cb526ae913 (diff)
downloadiced-4aed0fa4b6d63b739b5557ef16f6077988cd2758.tar.gz
iced-4aed0fa4b6d63b739b5557ef16f6077988cd2758.tar.bz2
iced-4aed0fa4b6d63b739b5557ef16f6077988cd2758.zip
Rename `window::Backend` to `Compositor`
Diffstat (limited to 'examples/tour/src')
-rw-r--r--examples/tour/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/tour/src/main.rs b/examples/tour/src/main.rs
index 729ae8fb..8c3b1d19 100644
--- a/examples/tour/src/main.rs
+++ b/examples/tour/src/main.rs
@@ -26,7 +26,7 @@ pub struct Tour {
}
impl Application for Tour {
- type Backend = window::Backend;
+ type Compositor = window::Compositor;
type Executor = executor::Null;
type Message = Message;
type Flags = ();