chore: Remove unused imports

This commit is contained in:
Fabio Lenherr / DashieTM 2023-11-13 10:31:53 +01:00
parent e3b95d7540
commit a62288be07
15 changed files with 11 additions and 37 deletions

View file

@ -5,7 +5,6 @@ use std::sync::atomic::Ordering;
use crate::components::base::settingBox::SettingBox;
use crate::components::base::utils::Listeners;
use crate::components::bluetooth::bluetoothBox::BluetoothBox;
use crate::components::input::sourceBox;
use crate::components::input::sourceBox::SourceBox;
use crate::components::output::audioBox::AudioBox;
use crate::components::wifi::wifiBox::{scanForWifi, show_stored_connections, WifiBox};

View file

@ -1,5 +1,4 @@
use std::sync::Arc;
use std::sync::atomic::AtomicBool;
use adw::subclass::prelude::ObjectSubclassIsExt;
use glib::Object;

View file

@ -1,6 +1,5 @@
use std::cell::{Cell, RefCell};
use std::sync::Arc;
use std::sync::atomic::AtomicBool;
use glib::subclass::InitializingObject;
use gtk::{CompositeTemplate, FlowBox, glib, Image, Label, ListBoxRow};

View file

@ -1,6 +1,5 @@
use std::cell::RefCell;
use std::sync::Arc;
use std::sync::atomic::AtomicBool;
use adw::glib::StaticTypeExt;
use adw::subclass::prelude::AdwApplicationWindowImpl;