summaryrefslogtreecommitdiffstats
path: root/examples/checkbox/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/checkbox/src/main.rs')
-rw-r--r--examples/checkbox/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/checkbox/src/main.rs b/examples/checkbox/src/main.rs
index bec4a954..f06557f8 100644
--- a/examples/checkbox/src/main.rs
+++ b/examples/checkbox/src/main.rs
@@ -4,7 +4,7 @@ use iced::{Element, Font};
const ICON_FONT: Font = Font::with_name("icons");
pub fn main() -> iced::Result {
- iced::program("Checkbox - Iced", Example::update, Example::view)
+ iced::application("Checkbox - Iced", Example::update, Example::view)
.font(include_bytes!("../fonts/icons.ttf").as_slice())
.run()
}