diff --git a/crates/egui_demo_app/src/main.rs b/crates/egui_demo_app/src/main.rs index e30a73f22ea..61c0e94bb65 100644 --- a/crates/egui_demo_app/src/main.rs +++ b/crates/egui_demo_app/src/main.rs @@ -5,7 +5,7 @@ #![allow(clippy::never_loop)] // False positive // When compiling natively: -fn main() -> Result<(), eframe::Error> { +fn main() -> eframe::Result { for arg in std::env::args().skip(1) { match arg.as_str() { "--profile" => { diff --git a/examples/confirm_exit/src/main.rs b/examples/confirm_exit/src/main.rs index 1ec4a7e0f15..e02c5c1d00f 100644 --- a/examples/confirm_exit/src/main.rs +++ b/examples/confirm_exit/src/main.rs @@ -3,7 +3,7 @@ use eframe::egui; -fn main() -> Result<(), eframe::Error> { +fn main() -> eframe::Result { env_logger::init(); // Log to stderr (if you run with `RUST_LOG=debug`). let options = eframe::NativeOptions { viewport: egui::ViewportBuilder::default().with_inner_size([320.0, 240.0]), diff --git a/examples/custom_3d_glow/src/main.rs b/examples/custom_3d_glow/src/main.rs index c4b89103d3f..2242958779f 100644 --- a/examples/custom_3d_glow/src/main.rs +++ b/examples/custom_3d_glow/src/main.rs @@ -8,7 +8,7 @@ use eframe::{egui, egui_glow, glow}; use egui::mutex::Mutex; use std::sync::Arc; -fn main() -> Result<(), eframe::Error> { +fn main() -> eframe::Result { env_logger::init(); // Log to stderr (if you run with `RUST_LOG=debug`). let options = eframe::NativeOptions { viewport: egui::ViewportBuilder::default().with_inner_size([350.0, 380.0]), diff --git a/examples/custom_font/src/main.rs b/examples/custom_font/src/main.rs index 9687cb0215b..8960a8fe82b 100644 --- a/examples/custom_font/src/main.rs +++ b/examples/custom_font/src/main.rs @@ -3,7 +3,7 @@ use eframe::egui; -fn main() -> Result<(), eframe::Error> { +fn main() -> eframe::Result { env_logger::init(); // Log to stderr (if you run with `RUST_LOG=debug`). let options = eframe::NativeOptions { viewport: egui::ViewportBuilder::default().with_inner_size([320.0, 240.0]), diff --git a/examples/custom_font_style/src/main.rs b/examples/custom_font_style/src/main.rs index 11608bfc012..fae1e8b079d 100644 --- a/examples/custom_font_style/src/main.rs +++ b/examples/custom_font_style/src/main.rs @@ -4,7 +4,7 @@ use eframe::egui; use egui::{FontFamily, FontId, RichText, TextStyle}; -fn main() -> Result<(), eframe::Error> { +fn main() -> eframe::Result { env_logger::init(); // Log to stderr (if you run with `RUST_LOG=debug`). let options = eframe::NativeOptions::default(); diff --git a/examples/custom_keypad/src/main.rs b/examples/custom_keypad/src/main.rs index d72d520a110..b4397be2f97 100644 --- a/examples/custom_keypad/src/main.rs +++ b/examples/custom_keypad/src/main.rs @@ -5,7 +5,7 @@ use eframe::egui; mod keypad; use keypad::Keypad; -fn main() -> Result<(), eframe::Error> { +fn main() -> eframe::Result { env_logger::init(); // Log to stderr (if you run with `RUST_LOG=debug`). let options = eframe::NativeOptions { viewport: egui::ViewportBuilder::default().with_inner_size([640.0, 480.0]), diff --git a/examples/custom_plot_manipulation/src/main.rs b/examples/custom_plot_manipulation/src/main.rs index 1d4abca3a6b..bb62645cbe2 100644 --- a/examples/custom_plot_manipulation/src/main.rs +++ b/examples/custom_plot_manipulation/src/main.rs @@ -5,7 +5,7 @@ use eframe::egui::{self, DragValue, Event, Vec2}; use egui_plot::{Legend, Line, PlotPoints}; -fn main() -> Result<(), eframe::Error> { +fn main() -> eframe::Result { env_logger::init(); // Log to stderr (if you run with `RUST_LOG=debug`). let options = eframe::NativeOptions::default(); eframe::run_native( diff --git a/examples/custom_window_frame/src/main.rs b/examples/custom_window_frame/src/main.rs index ef5cc2dbb55..2912e5bba17 100644 --- a/examples/custom_window_frame/src/main.rs +++ b/examples/custom_window_frame/src/main.rs @@ -5,7 +5,7 @@ use eframe::egui::{self, ViewportCommand}; -fn main() -> Result<(), eframe::Error> { +fn main() -> eframe::Result { env_logger::init(); // Log to stderr (if you run with `RUST_LOG=debug`). let options = eframe::NativeOptions { viewport: egui::ViewportBuilder::default() diff --git a/examples/file_dialog/src/main.rs b/examples/file_dialog/src/main.rs index 840a72fb5c7..63874649b66 100644 --- a/examples/file_dialog/src/main.rs +++ b/examples/file_dialog/src/main.rs @@ -3,7 +3,7 @@ use eframe::egui; -fn main() -> Result<(), eframe::Error> { +fn main() -> eframe::Result { env_logger::init(); // Log to stderr (if you run with `RUST_LOG=debug`). let options = eframe::NativeOptions { viewport: egui::ViewportBuilder::default() diff --git a/examples/hello_world/src/main.rs b/examples/hello_world/src/main.rs index 2780d0ce56e..6b85198a4d4 100644 --- a/examples/hello_world/src/main.rs +++ b/examples/hello_world/src/main.rs @@ -3,7 +3,7 @@ use eframe::egui; -fn main() -> Result<(), eframe::Error> { +fn main() -> eframe::Result { env_logger::init(); // Log to stderr (if you run with `RUST_LOG=debug`). let options = eframe::NativeOptions { viewport: egui::ViewportBuilder::default().with_inner_size([320.0, 240.0]), diff --git a/examples/hello_world_par/src/main.rs b/examples/hello_world_par/src/main.rs index ecf7034c2e1..7eeb7a2b6a3 100644 --- a/examples/hello_world_par/src/main.rs +++ b/examples/hello_world_par/src/main.rs @@ -8,7 +8,7 @@ use std::thread::JoinHandle; use eframe::egui; -fn main() -> Result<(), eframe::Error> { +fn main() -> eframe::Result { env_logger::init(); // Log to stderr (if you run with `RUST_LOG=debug`). let options = eframe::NativeOptions { viewport: egui::ViewportBuilder::default().with_inner_size([1024.0, 768.0]), diff --git a/examples/hello_world_simple/src/main.rs b/examples/hello_world_simple/src/main.rs index 4e48feeff90..4fe49a89d68 100644 --- a/examples/hello_world_simple/src/main.rs +++ b/examples/hello_world_simple/src/main.rs @@ -3,7 +3,7 @@ use eframe::egui; -fn main() -> Result<(), eframe::Error> { +fn main() -> eframe::Result { env_logger::init(); // Log to stderr (if you run with `RUST_LOG=debug`). let options = eframe::NativeOptions { diff --git a/examples/images/src/main.rs b/examples/images/src/main.rs index 1f53734e05c..cd657537278 100644 --- a/examples/images/src/main.rs +++ b/examples/images/src/main.rs @@ -3,7 +3,7 @@ use eframe::egui; -fn main() -> Result<(), eframe::Error> { +fn main() -> eframe::Result { env_logger::init(); // Log to stderr (if you run with `RUST_LOG=debug`). let options = eframe::NativeOptions { viewport: egui::ViewportBuilder::default().with_inner_size([600.0, 800.0]), diff --git a/examples/keyboard_events/src/main.rs b/examples/keyboard_events/src/main.rs index 3c1223d671d..b5dc9006ee1 100644 --- a/examples/keyboard_events/src/main.rs +++ b/examples/keyboard_events/src/main.rs @@ -4,7 +4,7 @@ use eframe::egui; use egui::*; -fn main() -> Result<(), eframe::Error> { +fn main() -> eframe::Result { env_logger::init(); // Log to stderr (if you run with `RUST_LOG=debug`). let options = eframe::NativeOptions::default(); eframe::run_native( diff --git a/examples/multiple_viewports/src/main.rs b/examples/multiple_viewports/src/main.rs index 0ed26e4e8a0..a8adab2c788 100644 --- a/examples/multiple_viewports/src/main.rs +++ b/examples/multiple_viewports/src/main.rs @@ -8,7 +8,7 @@ use std::sync::{ use eframe::egui; -fn main() -> Result<(), eframe::Error> { +fn main() -> eframe::Result { env_logger::init(); // Log to stderr (if you run with `RUST_LOG=debug`). let options = eframe::NativeOptions { viewport: egui::ViewportBuilder::default().with_inner_size([320.0, 240.0]), diff --git a/examples/puffin_profiler/src/main.rs b/examples/puffin_profiler/src/main.rs index 2987e93c5e8..5ae9bf03863 100644 --- a/examples/puffin_profiler/src/main.rs +++ b/examples/puffin_profiler/src/main.rs @@ -8,7 +8,7 @@ use std::sync::{ use eframe::egui; -fn main() -> Result<(), eframe::Error> { +fn main() -> eframe::Result { env_logger::init(); // Log to stderr (if you run with `RUST_LOG=debug`). start_puffin_server(); // NOTE: you may only want to call this if the users specifies some flag or clicks a button! diff --git a/examples/save_plot/src/main.rs b/examples/save_plot/src/main.rs index fa24ec84295..cb5526beb52 100644 --- a/examples/save_plot/src/main.rs +++ b/examples/save_plot/src/main.rs @@ -4,7 +4,7 @@ use eframe::egui; use egui_plot::{Legend, Line, Plot, PlotPoints}; -fn main() -> Result<(), eframe::Error> { +fn main() -> eframe::Result { env_logger::init(); // Log to stderr (if you run with `RUST_LOG=debug`). let options = eframe::NativeOptions { diff --git a/examples/screenshot/src/main.rs b/examples/screenshot/src/main.rs index 24eccd2d27c..155530042c4 100644 --- a/examples/screenshot/src/main.rs +++ b/examples/screenshot/src/main.rs @@ -5,7 +5,7 @@ use std::sync::Arc; use eframe::egui::{self, ColorImage}; -fn main() -> Result<(), eframe::Error> { +fn main() -> eframe::Result { env_logger::init(); // Log to stderr (if you run with `RUST_LOG=debug`). let options = eframe::NativeOptions { renderer: eframe::Renderer::Wgpu, diff --git a/examples/serial_windows/src/main.rs b/examples/serial_windows/src/main.rs index 9ea1f3ea8ef..133155bd131 100644 --- a/examples/serial_windows/src/main.rs +++ b/examples/serial_windows/src/main.rs @@ -3,7 +3,7 @@ use eframe::egui; -fn main() -> Result<(), eframe::Error> { +fn main() -> eframe::Result { env_logger::init(); // Log to stderr (if you run with `RUST_LOG=debug`). if cfg!(target_os = "macos") { diff --git a/tests/test_ui_stack/src/main.rs b/tests/test_ui_stack/src/main.rs index 3afb659366d..7cd57135418 100644 --- a/tests/test_ui_stack/src/main.rs +++ b/tests/test_ui_stack/src/main.rs @@ -5,7 +5,7 @@ use eframe::egui; use eframe::egui::{Rangef, Shape, UiKind}; use egui_extras::Column; -fn main() -> Result<(), eframe::Error> { +fn main() -> eframe::Result { env_logger::init(); // Log to stderr (if you run with `RUST_LOG=debug`). let options = eframe::NativeOptions { viewport: egui::ViewportBuilder::default().with_inner_size([320.0, 240.0]),