mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-30 20:37:20 +02:00
Build
- Fixed more case-sensitivity problems, and missing include files.
This commit is contained in:
parent
17f3717871
commit
08c4d4bdfe
5 changed files with 15 additions and 14 deletions
|
@ -29,12 +29,12 @@
|
|||
#include <Context.h>
|
||||
#include <main.h>
|
||||
#include <util.h>
|
||||
#include <CmdIds.h>
|
||||
#include <CmdIDs.h>
|
||||
|
||||
extern Context context;
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
CmdIds::CmdIds ()
|
||||
CmdIDs::CmdIDs ()
|
||||
{
|
||||
_keyword = "ids";
|
||||
_usage = "task ids [<filter>]";
|
||||
|
@ -44,7 +44,7 @@ CmdIds::CmdIds ()
|
|||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
int CmdIds::execute (const std::string& command_line, std::string& output)
|
||||
int CmdIDs::execute (const std::string& command_line, std::string& output)
|
||||
{
|
||||
// Scan the pending tasks, applying any filter.
|
||||
std::vector <Task> tasks;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue