cmGlobalGenerator: Rename progress initializer method.

This commit is contained in:
Stephen Kelly 2015-08-02 10:23:12 +02:00
parent b9eb3cd140
commit 2394584ce2
4 changed files with 4 additions and 4 deletions

View File

@ -1340,7 +1340,7 @@ void cmGlobalGenerator::Generate()
// Create a map from local generator to the complete set of targets
// it builds by default.
this->FillLocalGeneratorToTargetMap();
this->InitializeProgressMarks();
for (i = 0; i < this->LocalGenerators.size(); ++i)
{

View File

@ -398,7 +398,7 @@ protected:
void CheckLocalGenerators();
bool IsExcluded(cmLocalGenerator* root, cmLocalGenerator* gen) const;
bool IsExcluded(cmLocalGenerator* root, cmGeneratorTarget* target) const;
virtual void FillLocalGeneratorToTargetMap() {}
virtual void InitializeProgressMarks() {}
void CreateDefaultGlobalTargets(cmTargets* targets);
cmTarget CreateGlobalTarget(const std::string& name, const char* message,
const cmCustomCommandLines* commandLines,

View File

@ -919,7 +919,7 @@ cmGlobalUnixMakefileGenerator3
// Build a map that contains a the set of targets used by each local
// generator directory level.
void cmGlobalUnixMakefileGenerator3::FillLocalGeneratorToTargetMap()
void cmGlobalUnixMakefileGenerator3::InitializeProgressMarks()
{
this->LocalGeneratorToTargetMap.clear();
// Loop over all targets in all local generators.

View File

@ -209,7 +209,7 @@ private:
std::map<cmLocalGenerator*, std::set<cmGeneratorTarget const*> >
LocalGeneratorToTargetMap;
virtual void FillLocalGeneratorToTargetMap();
virtual void InitializeProgressMarks();
};
#endif