big refactor and cleanup of dock + use tokio mpsc

This commit is contained in:
Ashley Wulber 2022-01-02 01:46:44 -05:00
parent 346701b16d
commit 35eb571528
14 changed files with 578 additions and 674 deletions

View file

@ -1,4 +1,4 @@
use gdk4::glib::Object;
use gtk4::glib;
use crate::utils::BoxedSearchResult;
@ -10,6 +10,6 @@ glib::wrapper! {
impl SearchResultObject {
pub fn new(search_result: &BoxedSearchResult) -> Self {
Object::new(&[("data", search_result)]).expect("Failed to create Application Object")
glib::Object::new(&[("data", search_result)]).expect("Failed to create Application Object")
}
}