Cleanup
- Updated comments, docs.
This commit is contained in:
@@ -19,7 +19,7 @@ documentation, demonstration movies, and you'll find all the details at:
|
|||||||
|
|
||||||
http://taskwarrior.org
|
http://taskwarrior.org
|
||||||
|
|
||||||
At the site you'll find a wiki, discussion forums, downloads, news and more.
|
At the site you'll find online documentation, downloads, news and more.
|
||||||
|
|
||||||
Your contributions are especially welcome. Whether it comes in the form of
|
Your contributions are especially welcome. Whether it comes in the form of
|
||||||
code patches, ideas, discussion, bug reports, encouragement or criticism, your
|
code patches, ideas, discussion, bug reports, encouragement or criticism, your
|
||||||
@@ -33,7 +33,8 @@ Please send your code patches to:
|
|||||||
|
|
||||||
support@taskwarrior.org
|
support@taskwarrior.org
|
||||||
|
|
||||||
Consider joining taskwarrior.org and participating in the future of taskwarrior.
|
Consider joining bug.tasktools.org, answers.tasktools.org and participating in
|
||||||
|
the future of taskwarrior.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -24,7 +24,7 @@
|
|||||||
//
|
//
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
#include <iostream> // TODO Remove.
|
//#include <iostream>
|
||||||
#include <cmake.h>
|
#include <cmake.h>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|||||||
@@ -66,7 +66,6 @@
|
|||||||
#include <CmdIDs.h>
|
#include <CmdIDs.h>
|
||||||
#include <CmdImport.h>
|
#include <CmdImport.h>
|
||||||
#include <CmdInfo.h>
|
#include <CmdInfo.h>
|
||||||
//#include <CmdInstall.h>
|
|
||||||
#include <CmdLog.h>
|
#include <CmdLog.h>
|
||||||
#include <CmdLogo.h>
|
#include <CmdLogo.h>
|
||||||
#include <CmdModify.h>
|
#include <CmdModify.h>
|
||||||
@@ -139,7 +138,6 @@ void Command::factory (std::map <std::string, Command*>& all)
|
|||||||
c = new CmdIDs (); all[c->keyword ()] = c;
|
c = new CmdIDs (); all[c->keyword ()] = c;
|
||||||
c = new CmdImport (); all[c->keyword ()] = c;
|
c = new CmdImport (); all[c->keyword ()] = c;
|
||||||
c = new CmdInfo (); all[c->keyword ()] = c;
|
c = new CmdInfo (); all[c->keyword ()] = c;
|
||||||
// c = new CmdInstall (); all[c->keyword ()] = c;
|
|
||||||
c = new CmdLog (); all[c->keyword ()] = c;
|
c = new CmdLog (); all[c->keyword ()] = c;
|
||||||
c = new CmdLogo (); all[c->keyword ()] = c;
|
c = new CmdLogo (); all[c->keyword ()] = c;
|
||||||
c = new CmdModify (); all[c->keyword ()] = c;
|
c = new CmdModify (); all[c->keyword ()] = c;
|
||||||
|
|||||||
Reference in New Issue
Block a user