From 3ea1d09082de6b5ed4fbb7f9be04a0172c01c0be Mon Sep 17 00:00:00 2001 From: Sebastian Holtermann Date: Mon, 18 Apr 2016 12:34:10 +0200 Subject: [PATCH] Autogen: Rename method GenerateQrc{ => Files} --- Source/cmQtAutoGenerators.cxx | 4 ++-- Source/cmQtAutoGenerators.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/cmQtAutoGenerators.cxx b/Source/cmQtAutoGenerators.cxx index 65892fe0e..576de7a31 100644 --- a/Source/cmQtAutoGenerators.cxx +++ b/Source/cmQtAutoGenerators.cxx @@ -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::const_iterator si = this->RccSources.begin(); si != this->RccSources.end(); ++si) diff --git a/Source/cmQtAutoGenerators.h b/Source/cmQtAutoGenerators.h index 408ca14c4..5b33d1631 100644 --- a/Source/cmQtAutoGenerators.h +++ b/Source/cmQtAutoGenerators.h @@ -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& headerExtensions, std::map& includedMocs,