(&mut self, app: &mut Cursive)
| 21 | } |
| 22 | |
| 23 | fn undo(&mut self, app: &mut Cursive) { |
| 24 | let mut editor = app.find_name::<EditView>("Editor").unwrap(); |
| 25 | editor.set_content(&self.backup); |
| 26 | } |
| 27 | } |
nothing calls this directly
no outgoing calls
no test coverage detected