use namespace

This commit is contained in:
yggverse 2024-10-06 01:02:23 +03:00
parent 5a22e73b50
commit 9f30965e72
2 changed files with 4 additions and 4 deletions

View file

@ -3,7 +3,7 @@ mod database;
use database::Database;
use gtk::{prelude::GtkWindowExt, ApplicationWindow, Box, HeaderBar};
use sqlite::Transaction;
use sqlite::{Connection, Transaction};
use std::sync::{Arc, RwLock};
// Default options
@ -19,7 +19,7 @@ pub struct Widget {
impl Widget {
// Construct
pub fn new(
profile_database_connection: Arc<RwLock<sqlite::Connection>>,
profile_database_connection: Arc<RwLock<Connection>>,
titlebar: &HeaderBar,
child: &Box,
) -> Self {