summaryrefslogtreecommitdiffstats
path: root/Source/cmExportLibraryDependencies.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2006-03-15 16:02:08 (GMT)
committerKen Martin <ken.martin@kitware.com>2006-03-15 16:02:08 (GMT)
commit3d96e522617647665d7e99919ba71d34b1db870c (patch)
tree2ec6cf41cc61aad79b94cff9b2aa321f2c8b686e /Source/cmExportLibraryDependencies.cxx
parent609af5c969be6edf087498f983ccd7d3ac818a48 (diff)
downloadCMake-3d96e522617647665d7e99919ba71d34b1db870c.zip
CMake-3d96e522617647665d7e99919ba71d34b1db870c.tar.gz
CMake-3d96e522617647665d7e99919ba71d34b1db870c.tar.bz2
STYLE: some m_ to this-> cleanup
Diffstat (limited to 'Source/cmExportLibraryDependencies.cxx')
-rw-r--r--Source/cmExportLibraryDependencies.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/Source/cmExportLibraryDependencies.cxx b/Source/cmExportLibraryDependencies.cxx
index de55cc4..3f39920 100644
--- a/Source/cmExportLibraryDependencies.cxx
+++ b/Source/cmExportLibraryDependencies.cxx
@@ -38,7 +38,7 @@ bool cmExportLibraryDependenciesCommand::InitialPass(std::vector<std::string> co
// store the arguments for the final pass
// also expand any CMake variables
- m_Args = args;
+ this->Args = args;
return true;
}
@@ -46,11 +46,11 @@ bool cmExportLibraryDependenciesCommand::InitialPass(std::vector<std::string> co
void cmExportLibraryDependenciesCommand::FinalPass()
{
// Create a full path filename for output
- std::string fname = m_Args[0];
+ std::string fname = this->Args[0];
bool append = false;
- if(m_Args.size() > 1)
+ if(this->Args.size() > 1)
{
- if(m_Args[1] == "APPEND")
+ if(this->Args[1] == "APPEND")
{
append = true;
}
@@ -79,7 +79,7 @@ void cmExportLibraryDependenciesCommand::FinalPass()
cmSystemTools::ReportLastSystemError("");
return;
}
- cmake* cm = m_Makefile->GetCMakeInstance();
+ cmake* cm = this->Makefile->GetCMakeInstance();
cmGlobalGenerator* global = cm->GetGlobalGenerator();
std::vector<cmLocalGenerator *> locals;
global->GetLocalGenerators(locals);
@@ -99,7 +99,7 @@ void cmExportLibraryDependenciesCommand::FinalPass()
{
libDepName = l->first;
libDepName += "_LIB_DEPENDS";
- const char* def = m_Makefile->GetDefinition(libDepName.c_str());
+ const char* def = this->Makefile->GetDefinition(libDepName.c_str());
if(def)
{
fout << "SET(" << libDepName << " \"" << def << "\")\n";
@@ -110,7 +110,7 @@ void cmExportLibraryDependenciesCommand::FinalPass()
{
libDepName = *d;
libDepName += "_LINK_TYPE";
- defType = m_Makefile->GetDefinition(libDepName.c_str());
+ defType = this->Makefile->GetDefinition(libDepName.c_str());
libDepName = cmSystemTools::EscapeSpaces(libDepName.c_str());
if(defType)
{