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/cmSourceGroupCommand.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/cmSourceGroupCommand.cxx')
-rw-r--r-- | Source/cmSourceGroupCommand.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/cmSourceGroupCommand.cxx b/Source/cmSourceGroupCommand.cxx index aa8ef02..67651c6 100644 --- a/Source/cmSourceGroupCommand.cxx +++ b/Source/cmSourceGroupCommand.cxx @@ -58,9 +58,9 @@ bool cmSourceGroupCommand::InitialPass(std::vector<std::string> const& args) } std::string delimiter = "\\"; - if(m_Makefile->GetDefinition("SOURCE_GROUP_DELIMITER")) + if(this->Makefile->GetDefinition("SOURCE_GROUP_DELIMITER")) { - delimiter = m_Makefile->GetDefinition("SOURCE_GROUP_DELIMITER"); + delimiter = this->Makefile->GetDefinition("SOURCE_GROUP_DELIMITER"); } std::vector<std::string> folders = tokenize(args[0], delimiter); @@ -69,12 +69,12 @@ bool cmSourceGroupCommand::InitialPass(std::vector<std::string> const& args) cmSourceGroup* sg = NULL; for(unsigned int i=0;i<folders.size();++i) { - sg = m_Makefile->GetSourceGroup(folders[i].c_str()); + sg = this->Makefile->GetSourceGroup(folders[i].c_str()); if(!sg) { - m_Makefile->AddSourceGroup(folders[i].c_str(), 0, parent); + this->Makefile->AddSourceGroup(folders[i].c_str(), 0, parent); } - sg = m_Makefile->GetSourceGroup(folders[i].c_str()); + sg = this->Makefile->GetSourceGroup(folders[i].c_str()); parent = folders[i].c_str(); } if(!sg) @@ -120,7 +120,7 @@ bool cmSourceGroupCommand::InitialPass(std::vector<std::string> const& args) std::string src = args[i].c_str(); if(!cmSystemTools::FileIsFullPath(src.c_str())) { - src = m_Makefile->GetCurrentDirectory(); + src = this->Makefile->GetCurrentDirectory(); src += "/"; src += args[i]; } |