summaryrefslogtreecommitdiff
path: root/Source/cmSourceGroupCommand.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2006-03-15 11:02:08 -0500
committerKen Martin <ken.martin@kitware.com>2006-03-15 11:02:08 -0500
commit3d96e522617647665d7e99919ba71d34b1db870c (patch)
tree2ec6cf41cc61aad79b94cff9b2aa321f2c8b686e /Source/cmSourceGroupCommand.cxx
parent609af5c969be6edf087498f983ccd7d3ac818a48 (diff)
downloadcmake-3d96e522617647665d7e99919ba71d34b1db870c.tar.gz
STYLE: some m_ to this-> cleanup
Diffstat (limited to 'Source/cmSourceGroupCommand.cxx')
-rw-r--r--Source/cmSourceGroupCommand.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/cmSourceGroupCommand.cxx b/Source/cmSourceGroupCommand.cxx
index aa8ef029dc..67651c6590 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];
}