summaryrefslogtreecommitdiffstats
path: root/Source/cmake.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-04-11 10:45:12 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-04-12 18:08:49 (GMT)
commit0f1f324b0dd7147850f923ab266873bd8a4a4353 (patch)
tree7d1fb1c7564a1e201323ad5ca73f83a8e8034e13 /Source/cmake.cxx
parent275185ac2b30b655b53100a129f5d7518ed943ad (diff)
downloadCMake-0f1f324b0dd7147850f923ab266873bd8a4a4353.zip
CMake-0f1f324b0dd7147850f923ab266873bd8a4a4353.tar.gz
CMake-0f1f324b0dd7147850f923ab266873bd8a4a4353.tar.bz2
cmake: Rename oddly named variables.
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r--Source/cmake.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx
index b27fefa..f22989d 100644
--- a/Source/cmake.cxx
+++ b/Source/cmake.cxx
@@ -228,14 +228,14 @@ bool cmake::CommandExists(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);
RegisteredCommandsMap::const_iterator pos = this->Commands.find(sName);
if (pos != this->Commands.end())
{
- rm = (*pos).second;
+ command = (*pos).second;
}
- return rm;
+ return command;
}
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
RegisteredCommandsMap::iterator pos = this->Commands.find(name);
if (pos != this->Commands.end())
@@ -283,7 +283,7 @@ void cmake::AddCommand(cmCommand* wg)
delete pos->second;
this->Commands.erase(pos);
}
- this->Commands.insert(std::make_pair(name, wg));
+ this->Commands.insert(std::make_pair(name, command));
}