rename constructors

This commit is contained in:
yggverse 2025-01-15 00:25:33 +02:00
parent 941b1cc283
commit edb385f903
36 changed files with 266 additions and 180 deletions

View file

@ -10,7 +10,7 @@ use std::rc::Rc;
fn main() -> ExitCode {
match gtk::init() {
Ok(_) => App::new(Rc::new(Profile::new())).run(),
Ok(_) => App::build(&Rc::new(Profile::new())).run(),
Err(_) => ExitCode::FAILURE,
}
}