slides, settings, and file stuff ported

This commit is contained in:
Chris Cochrun 2023-11-21 17:31:19 -06:00
parent 5d571a7e6f
commit 81b430e768
5 changed files with 1564 additions and 1459 deletions

View file

@ -64,7 +64,6 @@ impl Default for ServiceThingRust {
}
impl qobject::ServiceThing {
#[qinvokable]
pub fn activate(self: Pin<&mut Self>) {
println!("{}", self.active());
let active: bool = *self.active();
@ -72,7 +71,6 @@ impl qobject::ServiceThing {
println!("{}", !active);
}
#[qinvokable]
pub fn check_active(self: Pin<&mut Self>) {
println!("Are we active?: {}", self.active());
}