cmMakefile: Rename a variable.

This commit is contained in:
Stephen Kelly 2015-06-26 00:11:51 +02:00
parent 3f5200ec5f
commit e28e110d22

View File

@ -1630,13 +1630,13 @@ bool cmMakefile::IsRootMakefile() const
class cmMakefileCurrent class cmMakefileCurrent
{ {
cmGlobalGenerator* GG; cmGlobalGenerator* GG;
cmMakefile* MF; cmMakefile* CurrentMakefile;
cmState::Snapshot Snapshot; cmState::Snapshot Snapshot;
public: public:
cmMakefileCurrent(cmMakefile* mf) cmMakefileCurrent(cmMakefile* mf)
{ {
this->GG = mf->GetGlobalGenerator(); this->GG = mf->GetGlobalGenerator();
this->MF = this->GG->GetCurrentMakefile(); this->CurrentMakefile = this->GG->GetCurrentMakefile();
this->Snapshot = this->GG->GetCMakeInstance()->GetCurrentSnapshot(); this->Snapshot = this->GG->GetCMakeInstance()->GetCurrentSnapshot();
this->GG->GetCMakeInstance()->SetCurrentSnapshot( this->GG->GetCMakeInstance()->SetCurrentSnapshot(
this->GG->GetCMakeInstance()->GetCurrentSnapshot()); this->GG->GetCMakeInstance()->GetCurrentSnapshot());
@ -1650,7 +1650,7 @@ public:
#if defined(CMAKE_BUILD_WITH_CMAKE) #if defined(CMAKE_BUILD_WITH_CMAKE)
this->GG->GetFileLockPool().PopFileScope(); this->GG->GetFileLockPool().PopFileScope();
#endif #endif
this->GG->SetCurrentMakefile(this->MF); this->GG->SetCurrentMakefile(this->CurrentMakefile);
this->GG->GetCMakeInstance()->SetCurrentSnapshot(this->Snapshot); this->GG->GetCMakeInstance()->SetCurrentSnapshot(this->Snapshot);
} }
}; };