Command: tip

- Removed (stubbed) 'tip' command from core.  Will be external, if
  and when it is developed.
This commit is contained in:
Paul Beckingham 2011-06-13 00:49:37 -04:00
parent d6670ba198
commit 5d2528bff6
4 changed files with 0 additions and 96 deletions

View file

@ -69,7 +69,6 @@
#include <CmdSummary.h>
#include <CmdTags.h>
#include <CmdTimesheet.h>
#include <CmdTip.h>
#include <CmdUndo.h>
#include <CmdUrgency.h>
#include <CmdVersion.h>
@ -132,7 +131,6 @@ void Command::factory (std::map <std::string, Command*>& all)
c = new CmdSummary (); all[c->keyword ()] = c;
c = new CmdTags (); all[c->keyword ()] = c;
c = new CmdTimesheet (); all[c->keyword ()] = c;
c = new CmdTip (); all[c->keyword ()] = c;
c = new CmdUndo (); all[c->keyword ()] = c;
c = new CmdUrgency (); all[c->keyword ()] = c;
c = new CmdVersion (); all[c->keyword ()] = c;