Bug Fix - Cmd

- The two load* methods were conflicting - if loadCustomReports was
  called first, it stomped on the commands list and prevented
  loadCommands from running.  Now there is only one method.
- Rewrote util.cpp/autoComplete to use STL over libc.  Might reduce
  code size.
This commit is contained in:
Paul Beckingham 2009-06-15 12:18:04 -04:00
parent 9f1880e050
commit b742712bb1
3 changed files with 18 additions and 24 deletions

View file

@ -50,8 +50,7 @@ public:
std::string command;
private:
void loadCommands ();
void loadCustomReports ();
void load ();
private:
std::vector <std::string> commands;