mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-03-31 16:45:27 +00:00
remove direct memory access
This commit is contained in:
parent
33369e31ea
commit
19a07cdf1d
32 changed files with 112 additions and 111 deletions
|
|
@ -15,7 +15,7 @@ use gtk::{
|
|||
};
|
||||
use page::Page;
|
||||
use sqlite::Transaction;
|
||||
use std::rc::Rc;
|
||||
use std::{rc::Rc, sync::Arc};
|
||||
|
||||
pub struct Item {
|
||||
// Multi-protocol handler
|
||||
|
|
@ -32,7 +32,7 @@ impl Item {
|
|||
/// Build new `Self`
|
||||
pub fn build(
|
||||
(tab_page, target_child): (&TabPage, &Box),
|
||||
profile: &Rc<Profile>,
|
||||
profile: &Arc<Profile>,
|
||||
(browser_action, window_action, tab_action): (
|
||||
&Rc<BrowserAction>,
|
||||
&Rc<WindowAction>,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue