mirror of
https://github.com/Xetibo/ReSet.git
synced 2025-12-15 10:01:39 +01:00
chore: Fix all warnings
This commit is contained in:
parent
e62559a966
commit
ed435d6347
42 changed files with 36 additions and 67 deletions
|
|
@ -2,7 +2,6 @@ use std::sync::atomic::Ordering;
|
|||
use std::sync::Arc;
|
||||
use std::time::{Duration, SystemTime};
|
||||
|
||||
use adw::glib;
|
||||
use adw::glib::Object;
|
||||
use adw::prelude::{ComboRowExt, PreferencesGroupExt};
|
||||
use adw::subclass::prelude::ObjectSubclassIsExt;
|
||||
|
|
@ -325,8 +324,8 @@ pub fn start_bluetooth_listener(listeners: Arc<Listeners>, bluetooth_box: Arc<Bl
|
|||
}
|
||||
|
||||
listeners.bluetooth_listener.store(true, Ordering::SeqCst);
|
||||
let mut time = SystemTime::now();
|
||||
let mut listener_active = true;
|
||||
let time = SystemTime::now();
|
||||
let listener_active = true;
|
||||
|
||||
bluetooth_listener_loop(
|
||||
&conn,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue