diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-03-15 16:02:08 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-03-15 16:02:08 (GMT) |
commit | 3d96e522617647665d7e99919ba71d34b1db870c (patch) | |
tree | 2ec6cf41cc61aad79b94cff9b2aa321f2c8b686e /Source/cmListCommand.cxx | |
parent | 609af5c969be6edf087498f983ccd7d3ac818a48 (diff) | |
download | CMake-3d96e522617647665d7e99919ba71d34b1db870c.zip CMake-3d96e522617647665d7e99919ba71d34b1db870c.tar.gz CMake-3d96e522617647665d7e99919ba71d34b1db870c.tar.bz2 |
STYLE: some m_ to this-> cleanup
Diffstat (limited to 'Source/cmListCommand.cxx')
-rw-r--r-- | Source/cmListCommand.cxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Source/cmListCommand.cxx b/Source/cmListCommand.cxx index 60cf9e3..6c0b595 100644 --- a/Source/cmListCommand.cxx +++ b/Source/cmListCommand.cxx @@ -69,7 +69,7 @@ bool cmListCommand::GetListString(std::string& listString, const char* var) } // get the old value const char* cacheValue - = m_Makefile->GetDefinition(var); + = this->Makefile->GetDefinition(var); if(!cacheValue) { cmOStringStream str; @@ -115,7 +115,7 @@ bool cmListCommand::HandleLengthCommand(std::vector<std::string> const& args) char buffer[1024]; sprintf(buffer, "%d", static_cast<int>(length)); - m_Makefile->AddDefinition(variableName.c_str(), buffer); + this->Makefile->AddDefinition(variableName.c_str(), buffer); return true; } @@ -161,7 +161,7 @@ bool cmListCommand::HandleGetCommand(std::vector<std::string> const& args) value += varArgsExpanded[item]; } - m_Makefile->AddDefinition(variableName.c_str(), value.c_str()); + this->Makefile->AddDefinition(variableName.c_str(), value.c_str()); return true; } @@ -191,7 +191,7 @@ bool cmListCommand::HandleSetCommand(std::vector<std::string> const& args) listString += args[cc]; } - m_Makefile->AddDefinition(listName.c_str(), listString.c_str()); + this->Makefile->AddDefinition(listName.c_str(), listString.c_str()); return true; } @@ -244,7 +244,7 @@ bool cmListCommand::HandleInsertCommand(std::vector<std::string> const& args) value += varArgsExpanded[cc]; } - m_Makefile->AddDefinition(listName.c_str(), value.c_str()); + this->Makefile->AddDefinition(listName.c_str(), value.c_str()); return true; } @@ -289,7 +289,7 @@ bool cmListCommand::HandleRemoveCommand(std::vector<std::string> const& args) value += varArgsExpanded[cc]; } - m_Makefile->AddDefinition(listName.c_str(), value.c_str()); + this->Makefile->AddDefinition(listName.c_str(), value.c_str()); return true; } @@ -353,7 +353,7 @@ bool cmListCommand::HandleRemoveItemCommand(std::vector<std::string> const& args } } - m_Makefile->AddDefinition(listName.c_str(), value.c_str()); + this->Makefile->AddDefinition(listName.c_str(), value.c_str()); return true; } |