cmake: Rename oddly named variables.

This commit is contained in:
Stephen Kelly 2015-04-11 12:45:12 +02:00
parent 275185ac2b
commit 0f1f324b0d
1 changed files with 6 additions and 6 deletions

View File

@ -228,14 +228,14 @@ bool cmake::CommandExists(const std::string& name) const
cmCommand *cmake::GetCommand(const std::string& name) const cmCommand *cmake::GetCommand(const std::string& name) const
{ {
cmCommand* rm = 0; cmCommand* command = 0;
std::string sName = cmSystemTools::LowerCase(name); std::string sName = cmSystemTools::LowerCase(name);
RegisteredCommandsMap::const_iterator pos = this->Commands.find(sName); RegisteredCommandsMap::const_iterator pos = this->Commands.find(sName);
if (pos != this->Commands.end()) if (pos != this->Commands.end())
{ {
rm = (*pos).second; command = (*pos).second;
} }
return rm; return command;
} }
void cmake::RenameCommand(const std::string& oldName, void cmake::RenameCommand(const std::string& oldName,
@ -273,9 +273,9 @@ void cmake::RemoveCommand(const std::string& name)
} }
} }
void cmake::AddCommand(cmCommand* wg) void cmake::AddCommand(cmCommand* command)
{ {
std::string name = cmSystemTools::LowerCase(wg->GetName()); std::string name = cmSystemTools::LowerCase(command->GetName());
// if the command already exists, free the old one // if the command already exists, free the old one
RegisteredCommandsMap::iterator pos = this->Commands.find(name); RegisteredCommandsMap::iterator pos = this->Commands.find(name);
if (pos != this->Commands.end()) if (pos != this->Commands.end())
@ -283,7 +283,7 @@ void cmake::AddCommand(cmCommand* wg)
delete pos->second; delete pos->second;
this->Commands.erase(pos); this->Commands.erase(pos);
} }
this->Commands.insert(std::make_pair(name, wg)); this->Commands.insert(std::make_pair(name, command));
} }