Autogen: Rename method GenerateQrc{ => Files}

This commit is contained in:
Sebastian Holtermann 2016-04-18 12:34:10 +02:00 committed by Brad King
parent 8ced8bb95a
commit 3ea1d09082
2 changed files with 3 additions and 3 deletions

View File

@ -612,7 +612,7 @@ bool cmQtAutoGenerators::RunAutogen(cmMakefile* makefile)
if(!this->RccExecutable.empty())
{
this->GenerateQrc();
this->GenerateQrcFiles();
}
std::stringstream outStream;
@ -1264,7 +1264,7 @@ bool cmQtAutoGenerators::InputFilesNewerThanQrc(const std::string& qrcFile,
return false;
}
bool cmQtAutoGenerators::GenerateQrc()
bool cmQtAutoGenerators::GenerateQrcFiles()
{
for(std::vector<std::string>::const_iterator si = this->RccSources.begin();
si != this->RccSources.end(); ++si)

View File

@ -42,7 +42,7 @@ private:
bool GenerateMoc(const std::string& sourceFile,
const std::string& mocFileName);
bool GenerateUi(const std::string& realName, const std::string& uiFileName);
bool GenerateQrc();
bool GenerateQrcFiles();
void ParseCppFile(const std::string& absFilename,
const std::vector<std::string>& headerExtensions,
std::map<std::string, std::string>& includedMocs,