COMMON: Move typedef StringList from str.h to new header str-array.h
This removes the dependency on array.h from str.h. Also, begun migration from the confusing type name "StringList" to the more appropriate StringArray. svn-id: r48282
This commit is contained in:
parent
30c84d2cff
commit
c934642bdb
46 changed files with 139 additions and 77 deletions
|
@ -427,7 +427,7 @@ bool Debugger::Cmd_Help(int argc, const char **argv) {
|
|||
DebugPrintf("Commands are:\n");
|
||||
|
||||
// Obtain a list of sorted command names
|
||||
Common::StringList cmds;
|
||||
Common::Array<Common::String> cmds;
|
||||
CommandsMap::const_iterator iter, e = _cmds.end();
|
||||
for (iter = _cmds.begin(); iter != e; ++iter) {
|
||||
cmds.push_back(iter->_key);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue