- Fixed more case-sensitivity problems, and missing include files.
This commit is contained in:
Paul Beckingham
2011-05-28 17:53:58 -04:00
parent 17f3717871
commit 08c4d4bdfe
5 changed files with 15 additions and 14 deletions

View File

@@ -37,7 +37,7 @@
#include <CmdExec.h>
#include <CmdHelp.h>
#include <CmdHistory.h>
#include <CmdIds.h>
#include <CmdIDs.h>
#include <CmdInfo.h>
#include <CmdInstall.h>
#include <CmdLogo.h>
@@ -74,7 +74,7 @@ void Command::factory (std::map <std::string, Command*>& all)
c = new CmdHelp (); all[c->keyword ()] = c;
c = new CmdHistoryMonthly (); all[c->keyword ()] = c;
c = new CmdHistoryAnnual (); all[c->keyword ()] = c;
c = new CmdIds (); all[c->keyword ()] = c;
c = new CmdIDs (); all[c->keyword ()] = c;
c = new CmdInfo (); all[c->keyword ()] = c;
c = new CmdInstall (); all[c->keyword ()] = c;
c = new CmdLogo (); all[c->keyword ()] = c;