Rename TTApp to TaskwarriorTuiApp

This commit is contained in:
Dheepak Krishnamurthy 2021-03-25 16:44:17 -06:00
parent ef93b006dd
commit 31daa52e0d
2 changed files with 24 additions and 24 deletions

View file

@ -21,7 +21,7 @@ use std::panic;
use std::time::Duration;
use crate::util::Key;
use app::{AppMode, TTApp};
use app::{AppMode, TaskwarriorTuiApp};
const APP_VERSION: &str = env!("CARGO_PKG_VERSION");
const APP_NAME: &str = env!("CARGO_PKG_NAME");
@ -76,7 +76,7 @@ fn tui_main(_config: &str) -> Result<(), Box<dyn Error>> {
tick_rate: Duration::from_millis(250),
});
let maybeapp = TTApp::new();
let maybeapp = TaskwarriorTuiApp::new();
match maybeapp {
Ok(mut app) => {
loop {