From c9509d833650f436db46b85de5d9435225d647a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Cicho=C5=84?= Date: Wed, 2 Oct 2024 17:31:09 +0200 Subject: [PATCH] egui: fix remaining compile error --- src/bin/topola-egui/app.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/topola-egui/app.rs b/src/bin/topola-egui/app.rs index 0eafb1f..7f7493b 100644 --- a/src/bin/topola-egui/app.rs +++ b/src/bin/topola-egui/app.rs @@ -170,9 +170,9 @@ impl App { false } - fn load_specctra_dsn( + fn load_specctra_dsn( &mut self, - input: std::io::Result>, + input: std::io::Result, ) -> Result<(), String> { let tr = &self.translator; let bufread = input.map_err(|err| format!("{}; {}", tr.text("error-file-load"), err))?;