summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-06-06 15:47:39 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-06-06 15:47:39 +0000
commit61185fc62b7d3d05e33a116fca26aa9dc72ab691 (patch)
treedc3a71b2d1fa70f91400fe6d5e680d3e12e8059b /include
parent8172d4afcf105b58a4b16735f5e6f8ccc5404dd5 (diff)
m_abbreviation completed. :)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9845 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r--include/command_parse.h2
-rw-r--r--include/ctables.h2
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);