summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Holtermann <sebholt@xwmw.org>2016-04-18 12:34:10 +0200
committerBrad King <brad.king@kitware.com>2016-04-19 12:49:47 -0400
commit3ea1d09082de6b5ed4fbb7f9be04a0172c01c0be (patch)
tree46bfa999cbd903e5192c37a79c2e817219592573
parent8ced8bb95aee78ece751259f9cce23786fe4a1b2 (diff)
downloadcmake-3ea1d09082de6b5ed4fbb7f9be04a0172c01c0be.tar.gz
Autogen: Rename method GenerateQrc{ => Files}
-rw-r--r--Source/cmQtAutoGenerators.cxx4
-rw-r--r--Source/cmQtAutoGenerators.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmQtAutoGenerators.cxx b/Source/cmQtAutoGenerators.cxx
index 65892fe0e7..576de7a315 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<std::string>::const_iterator si = this->RccSources.begin();
si != this->RccSources.end(); ++si)
diff --git a/Source/cmQtAutoGenerators.h b/Source/cmQtAutoGenerators.h
index 408ca14c4b..5b33d16310 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<std::string>& headerExtensions,
std::map<std::string, std::string>& includedMocs,