h-gtk: Move appnotif.rs into the widgets module.

This commit is contained in:
Jordan Petridis 2018-05-30 16:45:46 +03:00
parent 8c0055723c
commit 14d72b92cb
No known key found for this signature in database
GPG Key ID: CEABAD9F5683B9A6
5 changed files with 3 additions and 3 deletions

View File

@ -12,11 +12,11 @@ use gtk::SettingsExt as GtkSettingsExt;
use crossbeam_channel::{unbounded, Sender}; use crossbeam_channel::{unbounded, Sender};
use hammond_data::Podcast; use hammond_data::Podcast;
use appnotif::{InAppNotification, UndoState};
use headerbar::Header; use headerbar::Header;
use settings::{self, WindowGeometry}; use settings::{self, WindowGeometry};
use stacks::{Content, PopulatedState}; use stacks::{Content, PopulatedState};
use utils; use utils;
use widgets::appnotif::{InAppNotification, UndoState};
use widgets::{about_dialog, mark_all_notif, remove_show_notif}; use widgets::{about_dialog, mark_all_notif, remove_show_notif};
use std::rc::Rc; use std::rc::Rc;

View File

@ -70,7 +70,6 @@ mod widgets;
mod app; mod app;
mod headerbar; mod headerbar;
mod appnotif;
mod manager; mod manager;
mod settings; mod settings;
mod static_resource; mod static_resource;

View File

@ -1,4 +1,5 @@
mod aboutdialog; mod aboutdialog;
pub mod appnotif;
mod empty; mod empty;
mod episode; mod episode;
mod episode_states; mod episode_states;

View File

@ -14,8 +14,8 @@ use hammond_data::utils::delete_show;
use hammond_data::Podcast; use hammond_data::Podcast;
use app::Action; use app::Action;
use appnotif::{InAppNotification, UndoState};
use utils::{self, lazy_load}; use utils::{self, lazy_load};
use widgets::appnotif::{InAppNotification, UndoState};
use widgets::EpisodeWidget; use widgets::EpisodeWidget;
use std::rc::Rc; use std::rc::Rc;