From 0f13520551d5e8102c00351b440c1fb451e6883c Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 4 Sep 2016 12:50:25 -0400 Subject: [PATCH] Review: Added more spacing between tasks --- src/review.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/review.cpp b/src/review.cpp index 863e39e..4d07b74 100644 --- a/src/review.cpp +++ b/src/review.cpp @@ -82,7 +82,7 @@ static void editTask (const std::string& uuid) command = "task rc.confirmation:no rc.verbose:nothing " + uuid + " modify reviewed:now"; system (command.c_str ()); - std::cout << "Modified.\n\n"; + std::cout << "Modified.\n\n\n\n"; } //////////////////////////////////////////////////////////////////////////////// @@ -90,7 +90,7 @@ static void reviewTask (const std::string& uuid) { std::string command = "task rc.confirmation:no rc.verbose:nothing " + uuid + " modify reviewed:now"; system (command.c_str ()); - std::cout << "Marked as reviewed.\n\n"; + std::cout << "Marked as reviewed.\n\n\n\n"; } //////////////////////////////////////////////////////////////////////////////// @@ -98,7 +98,7 @@ static void completeTask (const std::string& uuid) { std::string command = "task rc.confirmation:no rc.verbose:nothing " + uuid + " done"; system (command.c_str ()); - std::cout << "Completed.\n\n"; + std::cout << "Completed.\n\n\n\n"; } //////////////////////////////////////////////////////////////////////////////// @@ -106,7 +106,7 @@ static void deleteTask (const std::string& uuid) { std::string command = "task rc.confirmation:no rc.verbose:nothing " + uuid + " delete"; system (command.c_str ()); - std::cout << "Deleted.\n\n"; + std::cout << "Deleted.\n\n\n\n"; } ////////////////////////////////////////////////////////////////////////////////