add Runnable::name() implementation for PlannedNavigation resolve #12333

This commit is contained in:
sappharx 2016-07-10 17:48:28 -06:00
parent 01ec8491d3
commit 636e63f166

View file

@ -936,6 +936,8 @@ struct PlannedNavigation {
}
impl Runnable for PlannedNavigation {
fn name(&self) -> &'static str { "PlannedNavigation" }
fn handler(self: Box<PlannedNavigation>) {
if self.generation_id == self.form.root().generation_id.get() {
let script_chan = self.script_chan.clone();