diff --git a/src/backends/speech_dispatcher.rs b/src/backends/speech_dispatcher.rs
index 009a8fb..5717c61 100644
--- a/src/backends/speech_dispatcher.rs
+++ b/src/backends/speech_dispatcher.rs
@@ -6,7 +6,7 @@ use lazy_static::*;
use log::{info, trace};
use speech_dispatcher::*;
-use crate::{Backend, Error, Features};
+use crate::{Backend, Error, Features, UtteranceId};
pub struct SpeechDispatcher(Connection);
@@ -59,7 +59,7 @@ impl Backend for SpeechDispatcher {
}
}
- fn speak(&mut self, text: &str, interrupt: bool) -> Result<(), Error> {
+ fn speak(&mut self, text: &str, interrupt: bool) -> Result