mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Recurrence: Broke out handleUntil as a separate function
- This means until porocesing is no longer controlled by rc.recurrence, which was never intended.
This commit is contained in:
parent
e991004c43
commit
97b038ce29
14 changed files with 40 additions and 12 deletions
|
@ -58,6 +58,7 @@ CmdIDs::CmdIDs ()
|
|||
int CmdIDs::execute (std::string& output)
|
||||
{
|
||||
// Apply filter.
|
||||
handleUntil ();
|
||||
handleRecurrence ();
|
||||
Filter filter;
|
||||
std::vector <Task> filtered;
|
||||
|
@ -151,6 +152,7 @@ CmdCompletionIds::CmdCompletionIds ()
|
|||
int CmdCompletionIds::execute (std::string& output)
|
||||
{
|
||||
// Apply filter.
|
||||
handleUntil ();
|
||||
handleRecurrence ();
|
||||
Filter filter;
|
||||
std::vector <Task> filtered;
|
||||
|
@ -189,6 +191,7 @@ CmdZshCompletionIds::CmdZshCompletionIds ()
|
|||
int CmdZshCompletionIds::execute (std::string& output)
|
||||
{
|
||||
// Apply filter.
|
||||
handleUntil ();
|
||||
handleRecurrence ();
|
||||
Filter filter;
|
||||
std::vector <Task> filtered;
|
||||
|
@ -229,6 +232,7 @@ CmdUUIDs::CmdUUIDs ()
|
|||
int CmdUUIDs::execute (std::string& output)
|
||||
{
|
||||
// Apply filter.
|
||||
handleUntil ();
|
||||
handleRecurrence ();
|
||||
Filter filter;
|
||||
std::vector <Task> filtered;
|
||||
|
@ -265,6 +269,7 @@ CmdCompletionUuids::CmdCompletionUuids ()
|
|||
int CmdCompletionUuids::execute (std::string& output)
|
||||
{
|
||||
// Apply filter.
|
||||
handleUntil ();
|
||||
handleRecurrence ();
|
||||
Filter filter;
|
||||
std::vector <Task> filtered;
|
||||
|
@ -301,6 +306,7 @@ CmdZshCompletionUuids::CmdZshCompletionUuids ()
|
|||
int CmdZshCompletionUuids::execute (std::string& output)
|
||||
{
|
||||
// Apply filter.
|
||||
handleUntil ();
|
||||
handleRecurrence ();
|
||||
Filter filter;
|
||||
std::vector <Task> filtered;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue