mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
CmdUDAs
- Converted from A3 to Filter.
This commit is contained in:
parent
c3a759c63d
commit
a801ec2f50
1 changed files with 4 additions and 2 deletions
|
@ -28,6 +28,7 @@
|
|||
#include <sstream>
|
||||
#include <algorithm>
|
||||
#include <Context.h>
|
||||
#include <Filter.h>
|
||||
#include <ViewText.h>
|
||||
#include <main.h>
|
||||
#include <text.h>
|
||||
|
@ -66,9 +67,10 @@ int CmdUDAs::execute (std::string& output)
|
|||
}
|
||||
}
|
||||
|
||||
// Load/filter all data.
|
||||
// Apply filter.
|
||||
Filter filter;
|
||||
std::vector <Task> filtered;
|
||||
filter (filtered);
|
||||
filter.subset (filtered);
|
||||
|
||||
if (udas.size ())
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue