Libnotify update
This commit is contained in:
parent
932fd7180e
commit
162e344bf9
@ -3,9 +3,6 @@ use std::convert::From;
|
|||||||
use std;
|
use std;
|
||||||
use toml;
|
use toml;
|
||||||
|
|
||||||
#[cfg(feature = "notify")]
|
|
||||||
use libnotify;
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
error_chain! {
|
error_chain! {
|
||||||
@ -13,7 +10,6 @@ error_chain! {
|
|||||||
Alsa(alsa::Error);
|
Alsa(alsa::Error);
|
||||||
IO(std::io::Error);
|
IO(std::io::Error);
|
||||||
Toml(toml::de::Error);
|
Toml(toml::de::Error);
|
||||||
Libnotify(libnotify::errors::Error) #[cfg(feature = "notify")];
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -61,6 +61,10 @@ mod notif;
|
|||||||
|
|
||||||
|
|
||||||
use app_state::*;
|
use app_state::*;
|
||||||
|
#[cfg(feature = "notify")]
|
||||||
|
use libnotify::functions::*;
|
||||||
|
#[cfg(feature = "notify")]
|
||||||
|
use libnotify::manual_functions::*;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -69,7 +73,7 @@ fn main() {
|
|||||||
|
|
||||||
// TODO: error handling
|
// TODO: error handling
|
||||||
#[cfg(feature = "notify")]
|
#[cfg(feature = "notify")]
|
||||||
libnotify::init("PNMixer-rs").unwrap();
|
init("PNMixer-rs");
|
||||||
|
|
||||||
flexi_logger::LogOptions::new()
|
flexi_logger::LogOptions::new()
|
||||||
.log_to_file(false)
|
.log_to_file(false)
|
||||||
@ -84,5 +88,5 @@ fn main() {
|
|||||||
gtk::main();
|
gtk::main();
|
||||||
|
|
||||||
#[cfg(feature = "notify")]
|
#[cfg(feature = "notify")]
|
||||||
libnotify::uninit();
|
uninit();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user