diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/command_parse.h | 2 | ||||
-rw-r--r-- | include/ctables.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/command_parse.h b/include/command_parse.h index be980a4cb..b34c3cb7f 100644 --- a/include/command_parse.h +++ b/include/command_parse.h @@ -74,7 +74,7 @@ class CoreExport CommandParser : public classbase public: /** Command list, a hash_map of command names to Command* */ - Commandable cmdlist; + Commandtable cmdlist; /** Reload a core command. * This will only reload commands implemented by the core, diff --git a/include/ctables.h b/include/ctables.h index d9f660f71..ad2135b1e 100644 --- a/include/ctables.h +++ b/include/ctables.h @@ -173,7 +173,7 @@ class CoreExport Command : public Extensible /** A hash of commands used by the core */ -typedef nspace::hash_map<std::string,Command*> Commandable; +typedef nspace::hash_map<std::string,Command*> Commandtable; #define TRANSLATE1(x1) translation.push_back(x1); #define TRANSLATE2(x1,x2) translation.push_back(x1);translation.push_back(x2); |